-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
33 lines (29 loc) · 935 Bytes
/
error.html
File metadata and controls
33 lines (29 loc) · 935 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Error</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="data:image/x-icon;base64," />
<link rel="stylesheet" href="/static/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700;900&family=Space+Grotesk:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="center-box">
<h2 class="error-large">{{.Err}}</h2>
<div class="desc-preview">
<pre>{{.Desc}}</pre>
</div>
<div class="button-wrapper">
<form action="/" method="post">
<input type="submit" value="Go Back Home" />
</form>
</div>
</div>
</div>
</body>
</html>