forked from STICKnoLOGIC/First-Accord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
65 lines (65 loc) · 1.75 KB
/
404.html
File metadata and controls
65 lines (65 loc) · 1.75 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>404 Error - Page Not Found</title>
<style>
body {
background-color: #1e1e1e;
color: #d4d4d4;
font-family: "Courier New", Courier, monospace;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
.error-code {
font-size: 3rem;
color: #ce9178;
}
.error-message {
font-size: 1.5rem;
color: #dcdcaa;
}
.hint {
margin-top: 20px;
font-size: 1rem;
color: #569cd6;
}
a {
text-decoration: none;
color: #4ec9b0;
}
a:hover {
text-decoration: underline;
}
.terminal {
background-color: #252526;
padding: 20px;
border-radius: 5px;
margin-top: 20px;
color: #d4d4d4;
font-size: 1rem;
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">Error 404</div>
<div class="error-message">Oops! The page you're looking for is not found.</div>
<div class="hint">
Try debugging by <a href="/">returning home</a>.
</div>
<div class="terminal">
> _ PageNotFoundException: The requested resource could not be located. <br>
> _ StatusCode: 404 <br>
> _ Hint: Check the URL for typos or contact the admin. <br>
</div>
</div>
</body>
</html>