34 lines
927 B
HTML
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> |