-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path404.html
46 lines (36 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en" data-bs-theme="light"> <!-- data-bs-theme="dark/light" -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="NuclearPhoenix">
<meta name="title" content="Gamma MCA - Page Not Found!">
<meta name="language" content="English">
<!--
CSP: Only allow loading resources from this website.
-->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/assets/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#f6bd16">
<title>404 - Gamma MCA</title>
<link rel="stylesheet" href="/dist/main.css">
<script type="module" src="/dist/notFound.bundle.js"></script>
</head>
<body>
<div class="container-fluid flex-column d-flex p-2">
<div class="p-5 text-center">
<img src="/assets/logo.svg" alt="Logo" title="Gamma MCA Logo" class="logo-404">
<h1>Page Not Found!</h1>
<br>
<p>The page you were looking for does not exist.</p>
<strong><a class="link-primary link-offset-2 link-underline-opacity-25 link-underline-opacity-100-hover" title="Main Page" href="/">Go back to the main page. <i class="fas fa-link" aria-hidden="true"></i></a></strong>
</div>
</div>
</body>
</html>