Merge pull request #1213 from rockstardev/feature/accessdeniedfix

Fixing AccessDenied page displayed
This commit is contained in:
Rockstar Developer 2019-12-04 15:38:40 -06:00 committed by GitHub
commit 9b8f42cdf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,14 @@
ViewData["Title"] = "Access denied";
}
<header>
<h2 class="text-danger">ViewData["Title"]</h2>
<p class="text-danger">You do not have access to this resource.</p>
</header>
<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>