website/website/common/templates/500.html

42 lines
873 B
HTML

<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<title>Internal server error</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
html, body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: sans-serif;
background-color: #e85537;
color: white;
font-size: 125%;
}
h1 {
font-weight: 400;
}
p {
font-weight: 300;
}
a, a:hover {
color: inherit;
}
</style>
</head>
<body>
<h1>Internal server error</h1>
<p>You found a bug in my code - how dare you!</p>
<p>
<a href="" onclick="history.back()">&larr; Return to safety</a>
</p>
</body>
</html>