django-orchestra/orchestra/templates/error_500.html
2024-12-09 11:34:09 +01:00

34 lines
927 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>500 Internal Server Error</title>
<style>
/* Your custom CSS styles go here */
body {
font-family: Arial, sans-serif;
background-color: #f3f3f3;
}
.container {
text-align: center;
padding: 100px;
}
h1 {
font-size: 48px;
color: #ff5733;
}
p {
font-size: 18px;
color: #555;
}
</style>
</head>
<body>
<div class="container">
<h1>Oops! Something Went Wrong</h1>
<p>The error to the technicians is sent, so that they review it as soon as possible.</p>
<p>If the problem persists, you can communicate with our support team at support@pangea.org.</p>
</div>
</body>
</html>