learning-center/app/SharedKernel/Views/error.volt
2024-09-08 13:48:26 +03:00

15 lines
348 B
Plaintext

<html lang="en">
<head>
<title>{{ appName }}</title>
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
</head>
<body>
<div class="container" style="justify-content: center;display: flex;height: 100vh;align-items: center;text-align: center;">
<div>
<h1>{{ code }}</h1>
<h2>{{ message }}</h2>
</div>
</div>
</body>
</html>