danstore / Views /Shared /Error.cshtml
Danishathugging's picture
Sync from GitHub via hub-sync
6db0915 verified
Raw
History Blame Contribute Delete
608 Bytes
@model ErrorViewModel
@{
ViewData["Title"] = "Error";
}
<div class="max-w-2xl mx-auto px-8 py-16 text-center">
<div class="text-gray-300 text-6xl mb-4"><i class="fas fa-exclamation-triangle"></i></div>
<h1 class="text-3xl font-bold text-danger mb-2">Error</h1>
<h2 class="text-lg text-gray-500 mb-6">An error occurred while processing your request.</h2>
@if (Model.ShowRequestId)
{
<p class="text-sm text-gray-400">
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}
<a href="/" class="btn btn-primary mt-6">Go Home</a>
</div>