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