-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
69 lines (63 loc) · 2.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="zh-Hant-TW" data-bs-theme="light">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="icon" href="/favicon/favicon.ico" />
<meta property="og:title" content="404 |六 角學院">
<meta property="og:description" content="一次付費,終身複習,隨著時代更新的線上數位教材,透過國際知名 Udemy 線上教育平台,我們致力於優化程式教育的流程。">
<meta property="og:image" content="/12888559_608979252584725_2061282693707058663_o.png">
<meta property="og:site_name" content="六角學院">
<meta property="og:locale" content="zh_TW">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 Not Found | 六角學院</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
</head>
<style>
html, body {
max-height: 100vh;
min-height: 90vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #272626;
}
</style>
<body>
<div class="container text-white">
<div class="text-center display-1">
<i class="bi bi-exclamation-octagon"></i>
<h1>404 Not Found</h1>
<p class="h4 mb-5">Oops!你似乎迷路了</p>
</div>
<div class="h4">
<p>錯誤說明:</p>
<p>這個頁面可能不存在</p>
</div>
<div class="mt-5 h5">
你可以點此 <a href="https://rpg.hexschool.com/#/" class="text-white">回到首頁</a>,或等待 <span id="countdown">5</span> 秒後自動跳轉。
</div>
<div class="text-center mt-5">
<img src="/hex-logo-center.png" alt="六角學院" width="50" height="50">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<script>
let countdown = 5;
let countdownEl = document.getElementById('countdown');
let timer = setInterval(() => {
countdown--;
countdownEl.textContent = countdown;
if (countdown === 0) {
clearInterval(timer);
window.location.href = 'https://rpg.hexschool.com/#/';
}
}, 1000);
</script>
</body>
</html>