diff options
| author | Michael <[email protected]> | 2017-03-20 16:45:17 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-20 16:45:17 -0400 |
| commit | cdc61eb4ea5309769ad4db84d92594e4dc3dff67 (patch) | |
| tree | a8297a7aecc4376f07a497a5e02ab5ff165bfbd3 /Project-Unite/Views/Account/VerifyCode.cshtml | |
| parent | d9f475e1f33bbf39ca0d79d7a6b0c2fd501b4f2d (diff) | |
| download | project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.tar.gz project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.tar.bz2 project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.zip | |
Initial commit (azure deploy test)
Diffstat (limited to 'Project-Unite/Views/Account/VerifyCode.cshtml')
| -rw-r--r-- | Project-Unite/Views/Account/VerifyCode.cshtml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Project-Unite/Views/Account/VerifyCode.cshtml b/Project-Unite/Views/Account/VerifyCode.cshtml new file mode 100644 index 0000000..0f47757 --- /dev/null +++ b/Project-Unite/Views/Account/VerifyCode.cshtml @@ -0,0 +1,38 @@ +@model Project_Unite.Models.VerifyCodeViewModel +@{ + ViewBag.Title = "Verify"; +} + +<h2>@ViewBag.Title.</h2> + +@using (Html.BeginForm("VerifyCode", "Account", new { ReturnUrl = Model.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { + @Html.AntiForgeryToken() + @Html.Hidden("provider", @Model.Provider) + @Html.Hidden("rememberMe", @Model.RememberMe) + <h4>Enter verification code</h4> + <hr /> + @Html.ValidationSummary("", new { @class = "text-danger" }) + <div class="form-group"> + @Html.LabelFor(m => m.Code, new { @class = "col-md-2 control-label" }) + <div class="col-md-10"> + @Html.TextBoxFor(m => m.Code, new { @class = "form-control" }) + </div> + </div> + <div class="form-group"> + <div class="col-md-offset-2 col-md-10"> + <div class="checkbox"> + @Html.CheckBoxFor(m => m.RememberBrowser) + @Html.LabelFor(m => m.RememberBrowser) + </div> + </div> + </div> + <div class="form-group"> + <div class="col-md-offset-2 col-md-10"> + <input type="submit" class="btn btn-default" value="Submit" /> + </div> + </div> +} + +@section Scripts { + @Scripts.Render("~/bundles/jqueryval") +} |
