The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
@model Teknik.Areas.Error.ViewModels.ErrorViewModel |
|
|
|
@using Teknik.Helpers |
|
|
|
<div class="container"> |
|
<div class="row"> |
|
<div class="col-md-12"> |
|
<div class="error-template text-center"> |
|
<h1>Whoops!</h1> |
|
<h2>500 Server Error</h2> |
|
<div class="error-details"> |
|
Sorry, a server error occured. Please contact an Administrator about this error. |
|
<br /> |
|
<br /> |
|
@if (Model != null && Model.Exception != null) |
|
{ |
|
<div class="text-left"> |
|
<p> |
|
<b>Exception:</b> @Model.Exception.GetFullMessage(true) |
|
<br /> |
|
<b>Source:</b> @Model.Exception.Source |
|
</p> |
|
<div style="overflow:scroll"> |
|
<pre>@Model.Exception.StackTrace</pre> |
|
</div> |
|
</div> |
|
} |
|
</div> |
|
<br /> |
|
<div class="error-actions"> |
|
<a href="@Url.SubRouteUrl("www", "Home.Index")" class="btn btn-primary btn-lg"> |
|
<span class="glyphicon glyphicon-home"></span> |
|
Take Me Home |
|
</a> |
|
<a href="@Url.SubRouteUrl("contact", "Contact.Index")" class="btn btn-default btn-lg"> |
|
<span class="glyphicon glyphicon-envelope"></span> |
|
Contact Support |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
|