mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
Glyphicons dropped from Bootstrap4: https://getbootstrap.com/docs/4.0/migration/#components New version of Glyphicons not readily available in CSS format Using FA since it's already in solution
24 lines
752 B
Text
24 lines
752 B
Text
@model GenerateRecoveryCodesViewModel
|
|
@{
|
|
ViewData["Title"] = "Recovery codes";
|
|
ViewData.AddActivePage(ManageNavPages.TwoFactorAuthentication);
|
|
}
|
|
|
|
<h4>@ViewData["Title"]</h4>
|
|
<div class="alert alert-warning" role="alert">
|
|
<p>
|
|
<span class="fa fa-warning"></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>
|