1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-11-22 08:42:44 +01:00
Minecraft-Phantom-Panel/Server/Phantom.Server.Web/Layout/_Error.cshtml

34 lines
818 B
Plaintext

@page
@using Phantom.Server.Web.Identity.Interfaces
@model Phantom.Server.Web.Layout.ErrorModel
@inject INavigation Navigation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<base href="@Navigation.BasePath" />
<link href="css/site.css" rel="stylesheet" />
<title>Phantom Panel - Error</title>
</head>
<body>
<div class="body">
<main>
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (!string.IsNullOrEmpty(Model.RequestId)) {
<p>
<strong>Request ID:</strong>
<code>@Model.RequestId</code>
</p>
}
</main>
</div>
</body>
</html>