02a19aff56
Make csproj templates first-class in dotnet-new.
21 lines
682 B
Text
21 lines
682 B
Text
@model SendCodeViewModel
|
|
@{
|
|
ViewData["Title"] = "Send Verification Code";
|
|
}
|
|
|
|
<h2>@ViewData["Title"].</h2>
|
|
|
|
<form asp-controller="Account" asp-action="SendCode" asp-route-returnurl="@Model.ReturnUrl" method="post" class="form-horizontal">
|
|
<input asp-for="RememberMe" type="hidden" />
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
Select Two-Factor Authentication Provider:
|
|
<select asp-for="SelectedProvider" asp-items="Model.Providers"></select>
|
|
<button type="submit" class="btn btn-default">Submit</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
@section Scripts {
|
|
@{await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
|
|
}
|