source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.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: 988 bytes
Line 
1@page
2@model GenerateRecoveryCodesModel
3@{
4 ViewData["Title"] = "Generate two-factor authentication (2FA) recovery codes";
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>Put these codes in a safe place.</strong>
14 </p>
15 <p>
16 If you lose your device and don't have the recovery codes you will lose access to your account.
17 </p>
18 <p>
19 Generating new recovery codes does not change the keys used in authenticator apps. If you wish to change the key
20 used in an authenticator app you should <a asp-page="./ResetAuthenticator">reset your authenticator keys.</a>
21 </p>
22</div>
23<div>
24 <form method="post">
25 <button class="btn btn-danger" type="submit">Generate Recovery Codes</button>
26 </form>
27</div>
Note: See TracBrowser for help on using the repository browser.