added a default error page fixes #504

This commit is contained in:
Jeremy Quinton 2018-10-31 21:40:43 +02:00
parent d07ecc79d1
commit 6f818f87bf
1 changed files with 28 additions and 0 deletions

View File

@ -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>