@model IdentitySample.Models.SendCodeViewModel @{ //TODO: Until we have a way to specify the layout page at application level. Layout = "/Views/Shared/_Layout.cshtml"; ViewBag.Title = "Send Verification Code"; }

@ViewBag.Title.

@using (Html.BeginForm("SendCode", "Account", new { ReturnUrl = Model.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.Hidden("rememberMe", @Model.RememberMe)
Two Factor Authentication Provider: @Html.DropDownListFor(model => model.SelectedProvider, Model.Providers)
} @section Scripts { @*TODO : Until script helpers are available, adding script references manually*@ @*@Scripts.Render("~/bundles/jqueryval")*@ }