36 lines
1.3 KiB
Text
36 lines
1.3 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{t("500 - Server Error")}</title>
|
|
<link phx-track-static rel="stylesheet" href="/assets/css/app.css" />
|
|
</head>
|
|
<body class="bg-white">
|
|
<div class="min-h-screen flex flex-col items-center justify-center px-4 sm:px-6 lg:px-8">
|
|
<div class="max-w-2xl w-full text-center">
|
|
<!-- Logo -->
|
|
<img src="/images/towerops_logo.png" alt="Towerops" class="h-16 w-auto mx-auto mb-8" />
|
|
|
|
<!-- Error Code -->
|
|
<h1 class="text-9xl font-bold text-blue-600 mb-4">500</h1>
|
|
|
|
<!-- Error Message -->
|
|
<h2 class="text-3xl font-bold text-slate-900 mb-4">
|
|
{t("Something went wrong on our end")}
|
|
</h2>
|
|
<p class="text-lg text-slate-600 mb-8">
|
|
{t("We're working on fixing the problem. Please try again later.")}
|
|
</p>
|
|
|
|
<!-- Back Home Button -->
|
|
<a
|
|
href="/"
|
|
class="inline-flex items-center justify-center rounded-full py-3 px-6 text-sm font-semibold bg-blue-600 text-white hover:bg-blue-500 active:bg-blue-800 transition-colors"
|
|
>
|
|
{t("Go back home")}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|