21 lines
1.1 KiB
Plaintext
21 lines
1.1 KiB
Plaintext
@{
|
|
ViewData["Title"] = "Error5002";
|
|
ViewData["SidebarVariant"] = "2";
|
|
}
|
|
@section Styles {
|
|
<link rel="stylesheet" href="/css/style2.css" asp-append-version="true" />
|
|
}
|
|
|
|
<div class="p-4 md:p-6 flex items-center justify-center" style="min-height: calc(100vh - 64px);">
|
|
<div class="text-center">
|
|
<p class="text-9xl font-bold text-gray-300">500</p>
|
|
<h1 class="text-4xl font-bold text-gray-800 mt-4">Internal Server Error</h1>
|
|
<p class="text-gray-500 mt-2">The server encountered an internal error and could not complete your request.</p>
|
|
<a href="#" x-on:click.prevent="aktif = 'crmdashboard'" class="inline-flex items-center gap-2 mt-6 px-5 py-2.5 text-sm font-semibold rounded-lg text-white transition" style="background: #3b82f6;">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18"/></svg>
|
|
Go to Dashboard
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|