@model Winsoft.GOV.XF.WX.Models.IndexViewModel @{ ViewBag.Title = "管理"; }

@ViewBag.Title。

@ViewBag.StatusMessage

更改你的帐户设置


密码:
[ @if (Model.HasPassword) { @Html.ActionLink("更改密码", "ChangePassword") } else { @Html.ActionLink("创建", "SetPassword") } ]
外部登录名:
@Model.Logins.Count [ @Html.ActionLink("管理", "ManageLogins") ]
@* Phone Numbers can used as a second factor of verification in a two-factor authentication system. See this article for details on setting up this ASP.NET application to support two-factor authentication using SMS. Uncomment the following block after you have set up two-factor authentication *@ @*
电话号码:
@(Model.PhoneNumber ?? "None") @if (Model.PhoneNumber != null) { [  @Html.ActionLink("Change", "AddPhoneNumber")  ] using (Html.BeginForm("RemovePhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() [] } } else { [  @Html.ActionLink("Add", "AddPhoneNumber")  ] }
*@
双因素身份验证:

There are no two-factor authentication providers configured. See this article for details on setting up this ASP.NET application to support two-factor authentication.

@*@if (Model.TwoFactor) { using (Html.BeginForm("DisableTwoFactorAuthentication", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() 已启用 } } else { using (Html.BeginForm("EnableTwoFactorAuthentication", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() 已禁用 } }*@