added a default error page fixes #504
This commit is contained in:
parent
d07ecc79d1
commit
6f818f87bf
|
|
@ -0,0 +1,28 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>
|
||||
@lang("error.back_soon")
|
||||
</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #f9f9f9;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
font-size: 1.8em;
|
||||
}
|
||||
.missing {
|
||||
width: 250px;
|
||||
margin: 0 auto;
|
||||
margin-top: 50px;
|
||||
padding: 40px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="missing">
|
||||
<h2>@lang("error.back_soon")</h2>
|
||||
@lang("error.back_soon_description")
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue