custom error pages?

This commit is contained in:
Didier Slof 2023-02-19 14:51:15 +01:00
parent cb78a92298
commit eba00323ac
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 37 additions and 1 deletions

View file

@ -0,0 +1,30 @@
<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>