ForgotPassword.cshtml 930 B

123456789101112131415161718192021222324252627282930
  1. @model Winsoft.GOV.XF.WX.Models.ForgotPasswordViewModel
  2. @{
  3. ViewBag.Title = "忘记了密码?";
  4. }
  5. <h2>@ViewBag.Title。</h2>
  6. @using (Html.BeginForm("ForgotPassword", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
  7. {
  8. @Html.AntiForgeryToken()
  9. <h4>输入你的电子邮件。</h4>
  10. <hr />
  11. @Html.ValidationSummary("", new { @class = "text-danger" })
  12. <div class="form-group">
  13. @Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" })
  14. <div class="col-md-10">
  15. @Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
  16. </div>
  17. </div>
  18. <div class="form-group">
  19. <div class="col-md-offset-2 col-md-10">
  20. <input type="submit" class="btn btn-default" value="电子邮件链接" />
  21. </div>
  22. </div>
  23. }
  24. @section Scripts {
  25. @Scripts.Render("~/bundles/jqueryval")
  26. }