-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
51 lines (45 loc) · 903 Bytes
/
404.html
File metadata and controls
51 lines (45 loc) · 903 Bytes
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
{% block content %}
<!DOCTYPE html>
<html>
<head>
<title>rzro.link: Page Not Found</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0b1220;
font-family: system-ui, Arial;
color: white;
}
.card {
text-align: center;
background: rgba(255, 255, 255, 0.05);
padding: 50px;
border-radius: 14px;
}
a {
display: inline-block;
margin-top: 20px;
padding: 12px 22px;
background: #4cb39f;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="card">
<h1>🚫 Page not found</h1>
<p>The page you are looking for does not exist.</p>
<a href="/">
← Go Home
</a>
</div>
</body>
</html>
{% endblock %}