16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
|
|
@{
|
|
ViewData["Title"] = "403 - Forbidden";
|
|
if (ViewBag.ApplicationUser == null)
|
|
{
|
|
Layout = "_LayoutLogin";
|
|
}
|
|
}
|
|
|
|
<h1 class="text-center mb-5">403 - Forbidden</h1>
|
|
<h3 class="text-center mb-5">Sorry - you are not allowed to view this page</h3>
|
|
<div>
|
|
<img src="~/images/err_403.jpg" alt="403" class="img-fluid" />
|
|
</div>
|
|
|