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<h4>@ViewData["Title"]</h4>
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" class="form-group">
22        <button id="reset-authenticator-button" class="btn btn-danger" type="submit">Reset authenticator key</button>
23    </form>
24</div>
25