@model Winsoft.GOV.XF.WX.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") }