source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/Manage/Disable2fa.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: 749 bytes
Line 
1@page
2@model Disable2faModel
3@{
4 ViewData["Title"] = "Disable two-factor authentication (2FA)";
5 ViewData["ActivePage"] = ManageNavPages.TwoFactorAuthentication;
6}
7
8<partial name="_StatusMessage" for="StatusMessage" />
9<h3>@ViewData["Title"]</h3>
10
11<div class="alert alert-warning" role="alert">
12 <p>
13 <strong>This action only disables 2FA.</strong>
14 </p>
15 <p>
16 Disabling 2FA does not change the keys used in authenticator apps. If you wish to change the key
17 used in an authenticator app you should <a asp-page="./ResetAuthenticator">reset your authenticator keys.</a>
18 </p>
19</div>
20
21<div>
22 <form method="post">
23 <button class="btn btn-danger" type="submit">Disable 2FA</button>
24 </form>
25</div>
Note: See TracBrowser for help on using the repository browser.