-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path500.html
45 lines (42 loc) · 1.7 KB
/
500.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>500 | STiBaRC</title>
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="initial-scale=1, maximum-scale=5, user-scalable=yes, width=device-width">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/themes/default.css" id="theme">
<link rel="stylesheet" href="/css/global.css">
<script src="/js/API.js"></script>
<script src="/js/global.js"></script>
<script type="module" src="/components/LoginModal.js"></script>
<script type="module" src="/components/RegisterModal.js"></script>
<script type="module" src="/components/Header.js"></script>
<script type="module" src="/components/Footer.js"></script>
<script>
window.addEventListener("load", function() {
if (sessionStorage.loadedBefore !== undefined) setLoggedinState(api.loggedIn);
});
</script>
</head>
<body>
<stibarc-header></stibarc-header>
<stibarc-login-modal></stibarc-login-modal>
<stibarc-register-modal></stibarc-register-modal>
<main class="flexcontainer flexcolumn">
<span class="verticalspacer"></span>
<span class="block flexcontainer flexcolumn">
<span>Uh oh! We encountered a problem, and have dispatched our team of Jim🅱os to fix it. Try going back and refreshing the page.</span>
<img src="/img/engineerbo.png">
</span>
</main>
<stibarc-footer></stibarc-footer>
<span id="overlay" class="hidden">
<span id="overlaybg"></span>
</span>
</body>
</html>