@model SpaAspNetCore.Models.VerifyPhoneNumberViewModel @{ ViewBag.Title = "Проверка номера телефона"; }

@ViewBag.Title.

@using (Html.BeginForm("VerifyPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.Hidden("phoneNumber", @Model.PhoneNumber)

Введите проверочный код

@ViewBag.Status

@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.Code, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Code, new { @class = "form-control" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }