btcpayserver/BTCPayServer/Views/Account/Lockout.cshtml

20 lines
506 B
Text
Raw Normal View History

2017-09-13 15:47:34 +09:00
@{
ViewData["Title"] = "Locked out";
}
2018-09-22 01:03:43 -05:00
<section>
<div class="container">
2017-09-13 15:47:34 +09:00
2018-09-22 01:03:43 -05:00
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">@ViewData["Title"]</h2>
<hr class="primary">
</div>
<div class="col-lg-12 lead">
<p>This account has been locked out because of multiple invalid login attempts. Please try again later.</p>
</div>
</div>
</div>
</section>