mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
15 lines
356 B
Text
15 lines
356 B
Text
@{
|
|
ViewData["Title"] = "Access denied";
|
|
}
|
|
|
|
<section>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<h4>@ViewData["Title"]</h4>
|
|
<hr />
|
|
<p class="text-danger">You do not have access to this resource.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|