-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7.html
More file actions
58 lines (56 loc) · 1.51 KB
/
7.html
File metadata and controls
58 lines (56 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>Error Page</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://unpkg.com/7.css" />
<style>
body {
background-color: #333333; /* Dark gray background */
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.window {
width: auto ;
max-height: 80vh;
}
.window-body pre {
margin: 2% !important;
}
section {
display: flex !important;
unicode-bidi: isolate;
}
</style>
</head>
<body>
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Error {{.StatusCode}} - {{.ErrorMessage}} </div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<pre>Microsoft❮R❯ Windows DOS
❮C❯ Copyright Microsoft Corp 1990-2007.
<br>C:\WINDOWS\SYSTEM32> HttpError: {{.StatusCode}}:
{{.ErrorMessage}} - {{.Description}}
</pre>
<br>
{{if .ImageExists}}
<img src="data:{{.MimeType}};base64,{{.ImageData}}" style="width: 100%; margin-bottom: 10px;" />
{{end}}
<section class="field-row" style="justify-content: end; margin: 20px;">
<button onclick="history.back()">← Go Back</button>
</section>
</div>
</div>
</div>
</div>
</body>
</html>
</html>