@model IdentitySample.Models.VerifyPhoneNumberViewModel @{ //TODO: Until we have a way to specify the layout page at application level. Layout = "/Views/Shared/_Layout.cshtml"; 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)

Add a phone number.

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