23 lines
1002 B
HTML
23 lines
1002 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>500 - Internal Server Error</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; text-align: center; padding: 50px; background-color: #f5f5f5; }
|
|
.error-container { max-width: 500px; margin: 0 auto; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
|
|
h1 { color: #e74c3c; font-size: 72px; margin: 0; }
|
|
h2 { color: #333; margin: 20px 0; }
|
|
p { color: #666; line-height: 1.6; }
|
|
.back-link { display: inline-block; margin-top: 20px; padding: 10px 20px; background: #3498db; color: white; text-decoration: none; border-radius: 5px; }
|
|
.back-link:hover { background: #2980b9; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<h1>500</h1>
|
|
<h2>Internal Server Error</h2>
|
|
<p>Something went wrong on our end. Please try again later.</p>
|
|
<a href="/" class="back-link">← Back to Dashboard</a>
|
|
</div>
|
|
</body>
|
|
</html> |