16 lines
355 B
Plaintext
16 lines
355 B
Plaintext
|
|
@{
|
|
ViewData["Title"] = "401 - Unauthorized";
|
|
if (ViewBag.ApplicationUser == null)
|
|
{
|
|
Layout = "_LayoutLogin";
|
|
}
|
|
}
|
|
|
|
<h1 class="text-center mb-5">401 - Unauthorized</h1>
|
|
<h3 class="text-center mb-5">Sorry - you don´t have access to this page</h3>
|
|
<div>
|
|
<img src="~/images/err_401.jpg" alt="401" class="img-fluid" />
|
|
</div>
|
|
|