28 lines
1003 B
HTML
28 lines
1003 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Server Error — Eggtracker</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<style>
|
|
.error-center { text-align: center; padding: 5rem 1rem; }
|
|
.error-center .code { font-size: 5rem; font-weight: 700; color: var(--border); line-height: 1; }
|
|
.error-center p { color: var(--muted); margin: 1rem 0 2rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="nav">
|
|
<a class="nav-brand" href="/">🥚 Eggtracker</a>
|
|
</nav>
|
|
<main class="container">
|
|
<div class="error-center">
|
|
<div class="code">5xx</div>
|
|
<h1>Something went wrong</h1>
|
|
<p>The server ran into a problem. This usually means the API container is still starting up — wait a moment and try again.</p>
|
|
<a href="/" class="btn btn-primary">Try Again</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|