forked from mjwebs/cloudflare-error
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcf-500.html
More file actions
63 lines (63 loc) · 1.42 KB
/
Copy pathcf-500.html
File metadata and controls
63 lines (63 loc) · 1.42 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
<!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>
<link rel="stylesheet" href="https://fonts.semaphoreapi.com/css2?family=New+Transport:ital,wght@0,400">
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: 'New Transport', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 20px;
}
.container {
text-align: center;
max-width: 600px;
background-color: #1e1e1e;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 4em;
margin-bottom: 10px;
color: #ff6b6b;
}
.error-message {
font-size: 1.5em;
margin-bottom: 30px;
}
.details {
font-size: 0.9em;
color: #cccccc;
text-align: left;
background-color: #2a2a2a;
padding: 20px;
border-radius: 5px;
}
.details p {
margin: 5px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>500</h1>
<p class="error-message">Internal Server Error</p>
<p>Sorry, there was an internal server error. Please try again later.</p>
::CLOUDFLARE_ERROR_500S_BOX::
<div class="details">
<p><strong>Client IP:</strong> ::CLIENT_IP::</p>
<p><strong>Ray ID:</strong> ::RAY_ID::</p>
<p><strong>Geo:</strong> ::GEO::</p>
</div>
</div>
</body>
</html>