yavsc/src/Yavsc.Org/Views/Manage/VerifyPhoneNumber.cshtml

30 lines
1,013 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model VerifyPhoneNumberViewModel
@{
2026-06-04 12:13:37 +01:00
ViewBag.Title = "Verify Phone Number";
2019-01-01 16:28:47 +00:00
}
2026-06-04 12:13:37 +01:00
<h2>@ViewBag.Title.</h2>
2019-01-01 16:28:47 +00:00
2026-06-04 12:13:37 +01:00
<form asp-controller="Manage" asp-action="VerifyPhoneNumber" asp-route-returnurl="@ViewBag.ReturnUrl" method="post" class="form-horizontal" role="form">
2019-01-01 16:28:47 +00:00
<input asp-for="PhoneNumber" type="hidden" />
<h4>Add a phone number.</h4>
2026-06-04 12:13:37 +01:00
<h5>@ViewBag.Status</h5>
2019-01-01 16:28:47 +00:00
<hr />
2023-03-20 09:13:16 +00:00
<div asp-validation-summary="All" class="text-danger"></div>
2019-01-01 16:28:47 +00:00
<div class="form-group">
<label asp-for="Code" class="col-md-2 control-label"></label>
<div class="col-md-10">
<input asp-for="Code" class="form-control" />
<span asp-validation-for="Code" class="text-danger"></span>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
2025-07-12 19:00:30 +01:00
<button type="submit" class="btn btn-primary">Submit</button>
2019-01-01 16:28:47 +00:00
</div>
</div>
</form>
@section Scripts {
@{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
}