mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
25 lines
771 B
Plaintext
25 lines
771 B
Plaintext
@model GenerateRecoveryCodesViewModel
|
|
@{
|
|
ViewData["Title"] = "Recovery codes";
|
|
ViewData.AddActivePage(ManageNavPages.TwoFactorAuthentication);
|
|
}
|
|
|
|
<h4>@ViewData["Title"]</h4>
|
|
<div class="alert alert-warning" role="alert">
|
|
<p>
|
|
<span class="glyphicon glyphicon-warning-sign"></span>
|
|
<strong>Put these codes in a safe place.</strong>
|
|
</p>
|
|
<p>
|
|
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>
|