mirror of
https://github.com/miawinter98/just-short-it.git
synced 2024-11-12 20:49:55 +00:00
17 lines
419 B
Plaintext
17 lines
419 B
Plaintext
@page
|
|
@model ErrorModel
|
|
@{
|
|
ViewData["Title"] = "Error";
|
|
}
|
|
|
|
<div class="flex flex-col gap-4">
|
|
<h1 class="text-3xl lg:text-5xl text-error">Error.</h1>
|
|
<h2 class="text-2xl lg:text-4xl text-secondary-content">An error occurred while processing your request.</h2>
|
|
|
|
@if (Model.ShowRequestId)
|
|
{
|
|
<p>
|
|
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
|
</p>
|
|
}
|
|
</div> |