initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Views / Account / ForgotPassword.cshtml
1 @model CPE.App.Web.Models.ForgotPasswordViewModel
2 @{
3     ViewBag.Title = "Forgot your password?";
4 }
5
6 <h2>@ViewBag.Title.</h2>
7
8 @using (Html.BeginForm("ForgotPassword", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
9 {
10     @Html.AntiForgeryToken()
11     <h4>Enter your email.</h4>
12     <hr />
13     @Html.ValidationSummary("", new { @class = "text-danger" })
14     <div class="form-group">
15         @Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" })
16         <div class="col-md-10">
17             @Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
18         </div>
19     </div>
20     <div class="form-group">
21         <div class="col-md-offset-2 col-md-10">
22             <input type="submit" class="btn btn-default" value="Email Link" />
23         </div>
24     </div>
25 }
26
27 @section Scripts {
28     @Scripts.Render("~/bundles/jqueryval")
29 }