mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-12-25 18:25:29 +01:00
88 lines
3.2 KiB
Plaintext
88 lines
3.2 KiB
Plaintext
@model RSystem.Models.IndexViewModel
|
|
@{
|
|
ViewBag.Title = "Manage";
|
|
}
|
|
|
|
<h2>@ViewBag.Title.</h2>
|
|
|
|
<p class="text-success">@ViewBag.StatusMessage</p>
|
|
<div>
|
|
<h4>Change your account settings</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>Password:</dt>
|
|
<dd>
|
|
[
|
|
@if (Model.HasPassword)
|
|
{
|
|
@Html.ActionLink("Change your password", "ChangePassword")
|
|
}
|
|
else
|
|
{
|
|
@Html.ActionLink("Create", "SetPassword")
|
|
}
|
|
]
|
|
</dd>
|
|
<dt>External Logins:</dt>
|
|
<dd>
|
|
@Model.Logins.Count [
|
|
@Html.ActionLink("Manage", "ManageLogins") ]
|
|
</dd>
|
|
@*
|
|
Phone Numbers can used as a second factor of verification in a two-factor authentication system.
|
|
|
|
See <a href="https://go.microsoft.com/fwlink/?LinkId=403804">this article</a>
|
|
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
|
|
*@
|
|
@*
|
|
<dt>Phone Number:</dt>
|
|
<dd>
|
|
@(Model.PhoneNumber ?? "None")
|
|
@if (Model.PhoneNumber != null)
|
|
{
|
|
<br />
|
|
<text>[ @Html.ActionLink("Change", "AddPhoneNumber") ]</text>
|
|
using (Html.BeginForm("RemovePhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
|
|
{
|
|
@Html.AntiForgeryToken()
|
|
<text>[<input type="submit" value="Remove" class="btn-link" />]</text>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
<text>[ @Html.ActionLink("Add", "AddPhoneNumber")
|
|
}
|
|
</dd>
|
|
*@
|
|
<dt>Two-Factor Authentication:</dt>
|
|
<dd>
|
|
<p>
|
|
There are no two-factor authentication providers configured. See <a href="https://go.microsoft.com/fwlink/?LinkId=403804">this article</a>
|
|
for details on setting up this ASP.NET application to support two-factor authentication.
|
|
</p>
|
|
@*@if (Model.TwoFactor)
|
|
{
|
|
using (Html.BeginForm("DisableTwoFactorAuthentication", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
|
|
{
|
|
@Html.AntiForgeryToken()
|
|
<text>Enabled
|
|
<input type="submit" value="Disable" class="btn btn-link" />
|
|
</text>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
using (Html.BeginForm("EnableTwoFactorAuthentication", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
|
|
{
|
|
@Html.AntiForgeryToken()
|
|
<text>Disabled
|
|
<input type="submit" value="Enable" class="btn btn-link" />
|
|
</text>
|
|
}
|
|
}*@
|
|
</dd>
|
|
</dl>
|
|
</div>
|