mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
28 lines
874 B
Plaintext
28 lines
874 B
Plaintext
@model GenerateRecoveryCodesViewModel
|
|
@{
|
|
ViewData.SetActivePage(ManageNavPages.TwoFactorAuthentication, "Recovery codes");
|
|
}
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
<h5>
|
|
<span class="fa fa-warning"></span>
|
|
Put these codes in a safe place
|
|
</h5>
|
|
<p class="mb-0">
|
|
If you lose your device and don't have the recovery codes you will lose access to your account.
|
|
</p>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
@for(var row = 0; row < Model.RecoveryCodes.Count(); row += 2)
|
|
{
|
|
<code>@Model.RecoveryCodes[row]</code><text> </text><code>@Model.RecoveryCodes[row + 1]</code><br />
|
|
}
|
|
</div>
|
|
</div>
|
|
<div class="row mt-4">
|
|
<div class="col-md-12">
|
|
<a asp-action="TwoFactorAuthentication" class="btn btn-primary">I wrote down my recovery codes</a>
|
|
</div>
|
|
</div>
|