@model Chruch.Net.Models.ResetPasswordViewModel @{ ViewBag.Title = "重設密碼"; }

@ViewBag.Title.

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

重設密碼。


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