@model Projects.Models.VerifyPhoneNumberViewModel @{ ViewBag.Title = "Verify Phone Number"; }

@ViewBag.Title.

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

Enter verification code

@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") }