@model IdentitySample.Models.AddPhoneNumberViewModel @{ //TODO: Until we have a way to specify the layout page at application level. Layout = "/Views/Shared/_Layout.cshtml"; ViewBag.Title = "Add Phone Number"; }

@ViewBag.Title.

@using (Html.BeginForm("AddPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken()

Add a phone number.


@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.Number, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Number, new { @class = "form-control" })
} @section Scripts { @*TODO : Until script helpers are available, adding script references manually*@ @*@Scripts.Render("~/bundles/jqueryval")*@ }