source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml

main
Last change on this file was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 901 bytes
Line 
1@page
2@model ResetAuthenticatorModel
3@{
4 ViewData["Title"] = "Reset authenticator key";
5 ViewData["ActivePage"] = ManageNavPages.TwoFactorAuthentication;
6}
7
8<partial name="_StatusMessage" for="StatusMessage" />
9<h3>@ViewData["Title"]</h3>
10<div class="alert alert-warning" role="alert">
11 <p>
12 <span class="glyphicon glyphicon-warning-sign"></span>
13 <strong>If you reset your authenticator key your authenticator app will not work until you reconfigure it.</strong>
14 </p>
15 <p>
16 This process disables 2FA until you verify your authenticator app.
17 If you do not complete your authenticator app configuration you may lose access to your account.
18 </p>
19</div>
20<div>
21 <form id="reset-authenticator-form" method="post">
22 <button id="reset-authenticator-button" class="btn btn-danger" type="submit">Reset authenticator key</button>
23 </form>
24</div>
Note: See TracBrowser for help on using the repository browser.