@model Chruch.Net.Models.SetPasswordViewModel @{ ViewBag.Title = "建立密碼"; }

@ViewBag.Title.

您沒有此網站的本機使用者名稱/密碼。請新增本機 帳戶,這樣一來不需要外部登入即可進行登入。

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

建立本機登入


@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.NewPassword, new { @class = "col-md-2 control-label" })
@Html.PasswordFor(m => m.NewPassword, 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") }