-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
75 lines (74 loc) · 1.84 KB
/
error.html
File metadata and controls
75 lines (74 loc) · 1.84 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, height=device-height, user-scalable=no, initial-scale=1.0"
/>
<link rel="stylesheet" href="src/error/styles.css" />
<script type="module" src="src/error/main.ts"></script>
<link rel="preload" href="openmoji.woff2" as="font" crossorigin />
</head>
<body>
<section>
<h1>🛑 Error: <span id="message">Unspecified</span></h1>
<p>Cause: <span id="cause">unknown</span></p>
<footer>
<p>
🐞 Believe this is a bug in the app? Please
<a
href="https://github.com/School-of-Life-Project/Portal/issues/new"
target="_blank"
>📝 file an issue</a
>.
</p>
<ul>
<li><a href="/">🏫 Go home</a></li>
<li>
<a href="/guide.html#troubleshooting"
>📜 View troubleshooting guide</a
>
</li>
<li>
<a id="resourceButton" href="#">📂 Open resource folder</a>
</li>
<li>
<a id="internalFolderButton" href="#">📂 Open data folder</a>
</li>
<li>
<a
href="https://github.com/School-of-Life-Project/Portal"
target="_blank"
>🔗 App source code</a
>
</li>
<li>
<a
href="https://github.com/School-of-Life-Project/Portal/issues"
target="_blank"
>🔗 App issue tracker</a
>
</li>
</ul>
<details>
<summary>🛠️ Database Actions</summary>
<p>
⚠️ These actions will apply
<strong>without further confirmation</strong>.
</p>
<ul>
<li>
<a id="resetSettingsButton" href="#"
>⚙️ Reset settings to defaults</a
>
</li>
<li>
<a id="resetCoursesButton" href="#">📚 Reset active courses</a>
</li>
</ul>
</details>
</footer>
</section>
</body>
</html>