-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path500.html
More file actions
190 lines (166 loc) · 4.12 KB
/
500.html
File metadata and controls
190 lines (166 loc) · 4.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!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 | MediChain</title>
<link rel="icon" href="assets/favicon.png" type="image/png" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css" rel="stylesheet" />
<style>
:root {
--primary-color: #000;
--accent-color: #2563eb;
--bg-color: #f5f7fa;
--card-bg: rgba(255, 255, 255, 0.85);
--glass-border: rgba(0, 0, 0, 0.05);
}
body {
margin: 0;
padding: 0;
background: var(--bg-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: var(--primary-color);
}
.error-container {
background: var(--card-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 60px 40px;
max-width: 580px;
width: 90%;
text-align: center;
box-shadow: 0 8px 24px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.error-code {
font-size: 64px;
font-weight: 800;
margin-bottom: 10px;
}
.error-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 16px;
}
.error-description {
font-size: 16px;
line-height: 1.6;
color: #333;
margin-bottom: 24px;
}
.error-help {
font-size: 14px;
color: #333;
margin-bottom: 32px;
}
.error-help a {
color: var(--accent-color);
text-decoration: underline;
}
.btn-group {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
margin-bottom: 30px;
}
.btn-home {
padding: 12px 24px;
font-size: 15px;
font-weight: 500;
border-radius: 30px;
letter-spacing: 0.5px;
transition: all 0.2s ease;
}
.btn-home:hover {
transform: translateY(-1px);
}
.btn-dark {
background: var(--primary-color);
color: #fff;
border: none;
}
.btn-outline-dark {
background: transparent;
border: 1px solid #000;
color: #000;
}
.footer {
font-size: 13px;
color: #555;
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer span {
font-weight: 600;
}
/* Responsive */
@media (max-width: 768px) {
.error-container {
padding: 50px 30px;
}
.error-code {
font-size: 56px;
}
.error-title {
font-size: 20px;
}
.error-description,
.error-help {
font-size: 15px;
}
}
@media (max-width: 576px) {
.error-container {
padding: 40px 20px;
}
.error-code {
font-size: 48px;
}
.error-title {
font-size: 18px;
}
.error-description,
.error-help {
font-size: 14px;
}
.btn-home {
font-size: 14px;
padding: 10px 20px;
}
}
</style>
</head>
<body>
<main class="error-container">
<div>
<div class="error-code">500</div>
<div class="error-title">Internal Server Error</div>
<div class="error-description">
Something went wrong on our end. Our engineering team has been notified and is working to fix the issue.
</div>
<div class="error-help">
If you encounter any issues, visit our
<a href="help-center.html">Help Center</a>
for FAQs and to contact our support team.
</div>
<div class="btn-group">
<a href="index.html" class="btn btn-dark btn-home">Back to Home</a>
<button onclick="location.reload()" class="btn btn-outline-dark btn-home">Try Again</button>
</div>
</div>
<div class="footer">
© 2025 <span>MediChain</span>. All rights reserved.
</div>
</main>
</body>
</html>