30 lines
No EOL
624 B
HTML
30 lines
No EOL
624 B
HTML
<html>
|
|
<head>
|
|
<title>50x Error</title>
|
|
<style>
|
|
:root {
|
|
--background: #1e1e1e;
|
|
--foreground: #d4d4d4;
|
|
--accent: #007acc;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
|
|
h1 {
|
|
color: var(--accent);
|
|
}
|
|
|
|
p {
|
|
color: var(--foreground);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>50x Error</h1>
|
|
<p>Sorry, something went wrong on the server.</p><br/>
|
|
<p>This usually means that there is a service booting or such...</p>
|
|
</body>
|
|
</html> |