| 1234567891011121314151617 |
- @model ErrorViewModel
- @{
- ViewData["Title"] = "Error";
- }
- <h1 class="text-danger">Error.</h1>
- <h2 class="text-danger">An error occurred while processing your request.</h2>
- <footer>
- @Html.Partial("../Partial/_Footer")
- </footer>
- @section Scripts{
- <script>
- showElement('dialogQuit');
- </script>
- }
|