Add missing @ symbol to AccessDenied.cshtml

This commit is contained in:
Scott Addie 2017-10-02 13:18:19 -05:00 committed by Steve Sanderson
parent eb67f8bcef
commit 4172d62aa5
4 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>