27 lines
907 B
Plaintext
27 lines
907 B
Plaintext
@model AddPhoneNumberViewModel
|
|
@{
|
|
ViewBag.Title = "Add Phone Number";
|
|
}
|
|
|
|
<h2>@ViewBag.Title.</h2>
|
|
<form asp-controller="Manage" asp-action="AddPhoneNumber" method="post" class="form-horizontal" role="form">
|
|
<h4>Add a phone number.</h4>
|
|
<hr />
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="Number" class="col-md-2 control-label"></label>
|
|
<div class="col-md-10">
|
|
<input asp-for="Number" class="form-control" />
|
|
<span asp-validation-for="Number" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-md-offset-2 col-md-10">
|
|
<input type="submit" class="btn btn-default" value="Send verification code" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
@section Scripts {
|
|
@{await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
|
|
} |