@model Chruch.Net.Models.ForgotPasswordViewModel @{ ViewBag.Title = "忘記密碼?"; }

@ViewBag.Title.

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

輸入您的電子郵件。


@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }