initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Views / Account / SendCode.cshtml
1 @model CPE.App.Web.Models.SendCodeViewModel
2 @{
3     ViewBag.Title = "Send";
4 }
5
6 <h2>@ViewBag.Title.</h2>
7
8 @using (Html.BeginForm("SendCode", "Account", new { ReturnUrl = Model.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) {
9     @Html.AntiForgeryToken()
10     @Html.Hidden("rememberMe", @Model.RememberMe)
11     <h4>Send verification code</h4>
12     <hr />
13     <div class="row">
14         <div class="col-md-8">
15             Select Two-Factor Authentication Provider:
16             @Html.DropDownListFor(model => model.SelectedProvider, Model.Providers)
17             <input type="submit" value="Submit" class="btn btn-default" />
18         </div>
19     </div>
20 }
21
22 @section Scripts {
23     @Scripts.Render("~/bundles/jqueryval")
24 }