-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
47 lines (40 loc) · 1.05 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Page Not Found</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
}
img {
max-width: 100%;
height: auto;
}
p {
margin-top: 2.5rem;}
</style>
</head>
<body>
<h1>Oops...</h1>
<img src="assets/images/get-in-friend-were-going-to-the-homepage.gif"
alt="Get in loser, we're going to the homepage">
<p>The page you are looking for does not exist or an error occurred. <br>
You will be redirected to the <a href="https://handbook.hypha.coop/">homepage</a> in 7
seconds.</p>
<script>
setTimeout(function () {
window.location.href = 'https://handbook.hypha.coop/';
}, 7000);
</script>
</body>
</html>