79 lines
2.2 KiB
HTML
79 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>500 - Server Error</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
max-width: 600px;
|
|
}
|
|
h1 {
|
|
font-size: 8rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
|
}
|
|
h2 {
|
|
font-size: 2rem;
|
|
font-weight: 400;
|
|
margin-bottom: 1rem;
|
|
}
|
|
p {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.9;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 1rem 2.5rem;
|
|
background: white;
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
|
margin: 0 0.5rem;
|
|
}
|
|
.btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
|
|
}
|
|
.error-code {
|
|
margin-top: 2rem;
|
|
font-size: 0.9rem;
|
|
opacity: 0.7;
|
|
font-family: 'Courier New', monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>500</h1>
|
|
<h2>Internal Server Error</h2>
|
|
<p>Something went wrong on our end. We're working to fix it.</p>
|
|
<div>
|
|
<a href="/" class="btn">Go Home</a>
|
|
<a href="javascript:location.reload()" class="btn">Retry</a>
|
|
</div>
|
|
<div class="error-code">Error Code: {{ error_code }}</div>
|
|
</div>
|
|
</body>
|
|
</html> |