16 lines
368 B
Plaintext

@{
ViewData["Title"] = "404 - Page not found";
if (ViewBag.ApplicationUser == null)
{
Layout = "_LayoutLogin";
}
}
<h1 class="text-center mb-5">404 - Page not found</h1>
<h3 class="text-center mb-5">We can&#180;t seem to find the page you are looking for.</h3>
<div>
<img src="~/images/err_404.jpg" alt="404" class="img-fluid" />
</div>