-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.html
More file actions
65 lines (60 loc) · 1.36 KB
/
500.html
File metadata and controls
65 lines (60 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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>
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
.glass {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(12px);
border-radius: 16px;
padding: 40px;
text-align: center;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
max-width: 400px;
}
h1 {
font-size: 3em;
margin-bottom: 0.2em;
color: #ff4f4f;
}
p {
font-size: 1.1em;
margin-bottom: 1.5em;
color: #cccccc;
}
a {
text-decoration: none;
color: #ffffff;
background: #ff4f4f;
padding: 10px 20px;
border-radius: 8px;
transition: background 0.3s ease;
}
a:hover {
background: #ff2f2f;
}
</style>
</head>
<body>
<div class="glass">
<h1>500</h1>
<p>Something went wrong on our end.<br>Please try again later.</p>
<a href="/">Go Home</a>
</div>
</body>
</html>