Add missing @ symbol to AccessDenied.cshtml
This commit is contained in:
parent
eb67f8bcef
commit
4172d62aa5
|
|
@ -5,6 +5,6 @@
|
|||
}
|
||||
|
||||
<header>
|
||||
<h1 class="text-danger">ViewData["Title"]</h1>
|
||||
<h1 class="text-danger">@ViewData["Title"]</h1>
|
||||
<p class="text-danger">You do not have access to this resource.</p>
|
||||
</header>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@
|
|||
}
|
||||
|
||||
<header>
|
||||
<h2 class="text-danger">ViewData["Title"]</h2>
|
||||
<h2 class="text-danger">@ViewData["Title"]</h2>
|
||||
<p class="text-danger">You do not have access to this resource.</p>
|
||||
</header>
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@
|
|||
}
|
||||
|
||||
<header>
|
||||
<h1 class="text-danger">ViewData["Title"]</h1>
|
||||
<h1 class="text-danger">@ViewData["Title"]</h1>
|
||||
<p class="text-danger">You do not have access to this resource.</p>
|
||||
</header>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@
|
|||
}
|
||||
|
||||
<header>
|
||||
<h2 class="text-danger">ViewData["Title"]</h2>
|
||||
<h2 class="text-danger">@ViewData["Title"]</h2>
|
||||
<p class="text-danger">You do not have access to this resource.</p>
|
||||
</header>
|
||||
|
|
|
|||
Loading…
Reference in New Issue