0
|
1 <!DOCTYPE html>
|
210
|
2 <html lang="en">
|
0
|
3 <head>
|
210
|
4 <meta charset="utf-8">
|
0
|
5 <title>We're sorry, but something went wrong (500)</title>
|
|
6 <meta name="viewport" content="width=device-width,initial-scale=1">
|
|
7 <style>
|
|
8 body {
|
|
9 background-color: #EFEFEF;
|
|
10 color: #2E2F30;
|
|
11 text-align: center;
|
|
12 font-family: arial, sans-serif;
|
|
13 margin: 0;
|
|
14 }
|
|
15
|
|
16 div.dialog {
|
|
17 width: 95%;
|
|
18 max-width: 33em;
|
|
19 margin: 4em auto 0;
|
|
20 }
|
|
21
|
|
22 div.dialog > div {
|
|
23 border: 1px solid #CCC;
|
|
24 border-right-color: #999;
|
|
25 border-left-color: #999;
|
|
26 border-bottom-color: #BBB;
|
|
27 border-top: #B00100 solid 4px;
|
|
28 border-top-left-radius: 9px;
|
|
29 border-top-right-radius: 9px;
|
|
30 background-color: white;
|
|
31 padding: 7px 12% 0;
|
|
32 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
33 }
|
|
34
|
|
35 h1 {
|
|
36 font-size: 100%;
|
|
37 color: #730E15;
|
|
38 line-height: 1.5em;
|
|
39 }
|
|
40
|
|
41 div.dialog > p {
|
|
42 margin: 0 0 1em;
|
|
43 padding: 1em;
|
|
44 background-color: #F7F7F7;
|
|
45 border: 1px solid #CCC;
|
|
46 border-right-color: #999;
|
|
47 border-left-color: #999;
|
|
48 border-bottom-color: #999;
|
|
49 border-bottom-left-radius: 4px;
|
|
50 border-bottom-right-radius: 4px;
|
|
51 border-top-color: #DADADA;
|
|
52 color: #666;
|
|
53 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
54 }
|
|
55 </style>
|
|
56 </head>
|
|
57
|
|
58 <body>
|
|
59 <!-- This file lives in public/500.html -->
|
|
60 <div class="dialog">
|
|
61 <div>
|
|
62 <h1>We're sorry, but something went wrong.</h1>
|
|
63 </div>
|
|
64 <p>If you are the application owner check the logs for more information.</p>
|
|
65 </div>
|
|
66 </body>
|
|
67 </html>
|