-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
234 lines (207 loc) · 5.64 KB
/
404.html
File metadata and controls
234 lines (207 loc) · 5.64 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 · page not found · DKIM checker</title>
<meta name="robots" content="noindex, follow">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(145deg, #f5f0ff 0%, #eee9fa 100%);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
color: #1a2639;
}
.glass-card {
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 2.5rem;
box-shadow: 0 25px 50px -12px rgba(60, 20, 100, 0.25), inset 0 1px 2px rgba(255,255,255,0.8);
width: 100%;
max-width: 700px;
padding: 3rem 2.5rem;
border: 1px solid rgba(255,255,255,0.5);
text-align: center;
}
.error-code {
font-size: 8rem;
font-weight: 700;
line-height: 1;
background: linear-gradient(135deg, #4a2f6b, #8a5bd5);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 0.5rem;
letter-spacing: -0.03em;
}
.divider {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #8a5bd5, #d0bbff);
border-radius: 2px;
margin: 1.5rem auto;
}
h1 {
font-size: 2rem;
font-weight: 600;
color: #4a2f6b;
margin-bottom: 1rem;
}
.message {
font-size: 1.2rem;
color: #5a4e77;
margin-bottom: 2.5rem;
line-height: 1.5;
}
.domain-preview {
background: rgba(138, 91, 213, 0.1);
border-radius: 60px;
padding: 0.8rem 1.8rem;
display: inline-block;
margin-bottom: 2rem;
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 1.1rem;
color: #4a2f6b;
border: 1px solid rgba(255,255,255,0.8);
}
.action-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 1rem;
}
.primary-btn {
background: #4a2f6b;
border: none;
padding: 1rem 2.3rem;
border-radius: 60px;
font-weight: 600;
font-size: 1.05rem;
color: white;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
box-shadow: 0 12px 22px -10px #4a2f6b;
transition: all 0.2s;
border: 1px solid rgba(255, 255, 255, 0.3);
text-decoration: none;
}
.primary-btn:hover {
background: #3a1f5b;
transform: scale(1.02);
box-shadow: 0 18px 28px -10px #3a1f5b;
}
.secondary-btn {
background: white;
color: #4a2f6b;
border: 2px solid #d0bbff;
padding: 1rem 2.3rem;
border-radius: 60px;
font-weight: 600;
font-size: 1.05rem;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all 0.2s;
text-decoration: none;
box-shadow: 0 6px 12px -8px #4a2f6b70;
}
.secondary-btn:hover {
background: #f0e9ff;
border-color: #8a5bd5;
transform: scale(1.01);
}
.help-links {
margin-top: 2.5rem;
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.help-link {
color: #5a4e77;
text-decoration: none;
font-size: 0.95rem;
border-bottom: 1px dotted #8a5bd5;
}
.help-link:hover {
color: #4a2f6b;
border-bottom: 2px solid #4a2f6b;
}
footer {
margin-top: 2.5rem;
color: #7a6e9a;
font-size: 0.9rem;
}
footer a {
color: #4a2f6b;
text-decoration: none;
border-bottom: 1px dotted;
}
footer a:hover {
border-bottom: 2px solid;
}
.globe-icon {
font-size: 1.5rem;
margin-right: 0.3rem;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="glass-card">
<div class="error-code">404</div>
<div class="divider"></div>
<h1>Page not found</h1>
<div class="message">
The DKIM record or page you're looking for doesn't exist.
</div>
<div class="domain-preview">
<span class="globe-icon">📧</span> dkim.hbenali.ovh
</div>
<div class="action-buttons">
<a href="/" class="primary-btn">
<span>🏠</span> Go to homepage
</a>
<a href="/" class="secondary-btn">
<span>🔍</span> Check DKIM records
</a>
</div>
<div class="help-links">
<a href="/" class="help-link">🏠 Home</a>
<a href="/sitemap.xml" class="help-link">📋 Sitemap</a>
<a href="https://github.com/yourusername/dkim-checker" class="help-link" target="_blank">📘 GitHub</a>
</div>
<footer>
<a href="/">DKIM record checker</a> · validate email authentication
</footer>
</div>
<script>
// If the URL has domain/selector parameters, we can still use them
// but we don't show the search form anymore
const urlParams = new URLSearchParams(window.location.search);
const domainParam = urlParams.get('domain');
const selectorParam = urlParams.get('selector');
// You could optionally redirect with params if needed
// But we'll keep it simple - just console log for debugging
if (domainParam || selectorParam) {
console.log('404 page accessed with params:', { domainParam, selectorParam });
}
</script>
</body>
</html>