Files
sx-fc/public/500.html
2025-05-27 16:06:43 +06:30

135 lines
3.9 KiB
HTML
Executable File

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Server Error - 500</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, sans-serif;
}
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.error-container {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
text-align: center;
max-width: 600px;
width: 100%;
transition: transform 0.3s ease;
}
.error-container:hover {
transform: translateY(-5px);
}
.error-icon {
font-size: 80px;
color: #ef4444;
margin-bottom: 20px;
animation: pulse 1.5s infinite;
}
h1 {
color: #1a1a1a;
font-size: 2.5em;
margin-bottom: 15px;
}
p {
color: #4a5568;
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 30px;
}
.home-button {
display: inline-block;
background: #4f46e5;
color: white;
padding: 12px 30px;
border-radius: 25px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
margin-top: 20px;
}
.home-button:hover {
background: #4338ca;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
@media (max-width: 480px) {
.error-container {
padding: 25px;
}
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
viewBox="0 0 24 24"
fill="none"
stroke="#ef4444"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<line x1="12" y1="8" x2="12" y2="12" />
<line x1="12" y1="16" x2="12" y2="16" />
</svg>
</div>
<h1>Internal Server Error</h1>
<p>Something went wrong.</p>
<p>
Please try again later or contact support if the problem
persists.
</p>
<a href="/" class="home-button">Return to Homepage</a>
</div>
</body>
</html>