Files
marechai/Marechai/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml

23 lines
918 B
Plaintext
Raw Normal View History

2020-05-24 02:12:11 +01:00
@page
@model ResetAuthenticatorModel
@{
ViewData["Title"] = "Reset authenticator key";
ViewData["ActivePage"] = ManageNavPages.TwoFactorAuthentication;
}
2020-12-20 21:34:13 +00:00
<partial for="StatusMessage" name="_StatusMessage" />
2020-05-24 02:12:11 +01:00
<h4>@ViewData["Title"]</h4>
<div class="alert alert-warning" role="alert">
<p>
<span class="glyphicon glyphicon-warning-sign"></span>
<strong>If you reset your authenticator key your authenticator app will not work until you reconfigure it.</strong>
</p>
<p>
This process disables 2FA until you verify your authenticator app.
If you do not complete your authenticator app configuration you may lose access to your account.
</p>
</div>
<div>
<form class="form-group" id="reset-authenticator-form" method="post">
<button class="btn btn-danger" id="reset-authenticator-button" type="submit">Reset authenticator key</button>
</form>
</div>