-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path500.html
79 lines (69 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>We're sorry, but something went wrong (500)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
background-color: #EFEFEF;
color: #2E2F30;
text-align: center;
font-family: -apple-system, BedgeMacSystemFont, Segoe UI, Roboto, Droid Sans, Arial, sans-serif;
margin: 0;
}
div.dialog {
width: 95%;
max-width: 43em;
margin: 4em auto 0;
}
div.dialog > div {
border: 1px solid #bbb;
border-top: #B00100 solid 4px;
background-color: white;
padding: 2em 4em;
}
h1 {
font-size: 150%;
color: #9C0100;
line-height: 1.5em;
}
p {
line-height: 1.5;
}
p.back {
margin-top: 1.1em;
}
a {
color: #1975ca;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.back a {
margin-left: -1em;
padding: 10px 15px;
}
.back a:hover {
background: #1975ca;
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<!-- This file lives in public/500.html -->
<div class="dialog">
<div>
<h1>We're sorry, but something went wrong.</h1>
<p>
The page you requested can't be shown at the moment. That is our
fault and we have been notified of the error. Please check back again
later. If you continue to experience this message, please feel free to
<a href="mailto:dev@quintel.com">contact us</a>.
</p>
<p class="back"><a href="/" title="Home page">← Back to the home page</a></p>
</div>
</div>
</body>
</html>