25 lines
730 B
Plaintext
25 lines
730 B
Plaintext
@model Chruch.Net.Models.SendCodeViewModel
|
|
@{
|
|
ViewBag.Title = "傳送";
|
|
}
|
|
|
|
<h2>@ViewBag.Title.</h2>
|
|
|
|
@using (Html.BeginForm("SendCode", "Account", new { ReturnUrl = Model.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) {
|
|
@Html.AntiForgeryToken()
|
|
@Html.Hidden("rememberMe", @Model.RememberMe)
|
|
<h4>傳送驗證碼</h4>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
選取雙因素驗證提供者:
|
|
@Html.DropDownListFor(model => model.SelectedProvider, Model.Providers)
|
|
<input type="submit" value="提交" class="btn btn-default" />
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
@section Scripts {
|
|
@Scripts.Render("~/bundles/jqueryval")
|
|
}
|