Custom logging
[wsti_pai.git] / Projects / Views / Manage / VerifyPhoneNumber.cshtml
1 @model Projects.Models.VerifyPhoneNumberViewModel
2 @{
3     ViewBag.Title = "Verify Phone Number";
4 }
5
6 <h2>@ViewBag.Title.</h2>
7
8 @using (Html.BeginForm("VerifyPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
9 {
10     @Html.AntiForgeryToken()
11     @Html.Hidden("phoneNumber", @Model.PhoneNumber)
12     <h4>Enter verification code</h4>
13     <h5>@ViewBag.Status</h5>
14     <hr />
15     @Html.ValidationSummary("", new { @class = "text-danger" })
16     <div class="form-group">
17         @Html.LabelFor(m => m.Code, new { @class = "col-md-2 control-label" })
18         <div class="col-md-10">
19             @Html.TextBoxFor(m => m.Code, new { @class = "form-control" })
20         </div>
21     </div>
22     <div class="form-group">
23         <div class="col-md-offset-2 col-md-10">
24             <input type="submit" class="btn btn-default" value="Submit" />
25         </div>
26     </div>
27 }
28
29 @section Scripts {
30     @Scripts.Render("~/bundles/jqueryval")
31 }