-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.html
More file actions
39 lines (30 loc) · 1.03 KB
/
error.html
File metadata and controls
39 lines (30 loc) · 1.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Holo Error</title>
<meta name="description" content="Holo Error">
<meta name="author" content="Holo">
<link rel="stylesheet" href="error.css" type="text/css" media="all" />
</head>
<body dir="ltr" class="illustrated dnsNotFound neterror">
<div id="errorPageContainer" class="container">
<div id="text-container">
<div class="title">
<h1 class="title-text">Oops. Something definitely went wrong.</h1>
</div>
<div>
<div>
<p id="errorShort"><span id="errorCode"></span> <span id="errorDescriptionShort"></span></p>
</div>
<div id="errorLong">
<p><b>Possible reasons could be:</b></p>
<p><span id="errorLongReasons"></span></p>
</div>
</div>
</div>
</div>
</body>
<script src="error.js"></script>
<script>window.onload=initError();</script>
</html>