42 lines
662 B
HTML
42 lines
662 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Error 500 | Internal server error</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<style>
|
|
body {
|
|
background: #065687 url('/errors_bg.jpg');
|
|
color: #2E2F30;
|
|
font-family: arial, sans-serif;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
font-size: 160px;
|
|
line-height: 160px;
|
|
margin: 0;
|
|
}
|
|
|
|
h2 {
|
|
color: white;
|
|
}
|
|
|
|
div.error {
|
|
margin-top: -144px;
|
|
position: absolute;
|
|
top: 50%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="error">
|
|
<h1>500</h1>
|
|
<h2>Internal server error.</h2>
|
|
</div>
|
|
</body>
|
|
</html>
|