mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
15 lines
364 B
Plaintext
15 lines
364 B
Plaintext
@{
|
|
ViewData["Title"] = "Access denied";
|
|
}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12 text-center">
|
|
<header>
|
|
<h2 class="text-danger">@ViewData["Title"]</h2>
|
|
<p class="text-danger">You do not have access to this resource.</p>
|
|
</header>
|
|
</div>
|
|
</div>
|
|
</div>
|