Files
btcpayserver/BTCPayServer/Views/Manage/ResetAuthenticator.cshtml
Dennis Reimann 906ecc021b Improve 2FA views
2020-07-08 19:19:29 +02:00

22 lines
798 B
Plaintext

@{
ViewData.SetActivePageAndTitle(ManageNavPages.TwoFactorAuthentication, "Reset authenticator key");
}
<div class="alert alert-warning" role="alert">
<h4 class="alert-heading mb-3">
<span class="fa fa-warning"></span>
Your authenticator app will not work until you reconfigure it.
</h4>
<p class="mb-2">
This process disables 2FA until you verify your authenticator app and will also reset your 2FA recovery codes.
</p>
<p class="mb-0">
If you do not complete your authenticator app configuration you may lose access to your account.
</p>
</div>
<div>
<form asp-action="ResetAuthenticator" method="post" class="form-group">
<button class="btn btn-danger" type="submit">Reset authenticator key</button>
</form>
</div>