mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
20 lines
506 B
Plaintext
20 lines
506 B
Plaintext
@{
|
|
ViewData["Title"] = "Locked out";
|
|
}
|
|
<section>
|
|
<div class="container">
|
|
|
|
<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>
|