This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path500.html
88 lines (69 loc) · 3.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!-- 404 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Error 500 | STiBaRC</title>
<!-- CSS -->
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="./css/page-specific/error.css">
<link rel="stylesheet" href="./css/themes/default.css">
<link rel="stylesheet" href="./css/stibarc-css.css">
<!-- Google Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- JS -->
<script type="text/javascript" src="./js/post.js"></script>
</head>
<body>
<!-- Nav Bar -->
<nav class="nav">
<div class="nav-container">
<a class="logo" href="./"><img src="./design_files/logo.png" alt="STiBaRC Logo"></a>
<span class="flex-grow"></span>
<!-- Logged Out Buttons -->
<span id="loggedout">
<span class="nav-items">
<input class="input primaryAlt" placeholder="Search">
<a href="./login.html" class="button m-left m-right primaryAlt">Log In</a>
<a href="./signup.html" class="button">Sign Up</a>
</span>
</span>
<!-- Logged In Buttons -->
<span id="loggedin">
<span class="nav-items">
<input class="input primaryAlt" placeholder="Search">
<img class="pfpButton" tabindex="0">
<button class="button dropdown"><i class="material-icons" style="vertical-align: middle; line-height: 5px; font-size: 1.75rem;">keyboard_arrow_down</i></button>
</span>
</span>
</div>
</nav>
<main class="container nav-margin margin-bottom">
<div class="row">
<div class="col s12">
<div class="message">
<h1>Well, This is Awkward.</h1>
<h4>
Looks like you've encountered a severe problem.
<br>
<br>
Did you hear that? We dispatched our very specialised taskforce to sniff out and fix the problem you just had.
</h4>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-container">
<a href="./css.html" style="text-align: center"><i> © 2020 STiBaRC Team</i></a>
<div style="flex-direction: row; margin: 10px;">
<a href="./index.html" class="button footer primary">Home</a>
<a href="./aboutus.html" class="button footer alt">About Us</a>
<a href="./legal/tos.html" class="button footer alt">ToS</a>
<a href="./legal/privacy.html" class="button footer alt">Privacy</a>
</div>
</div>
</footer>
</body>
</html>