2019-12-16 13:26:11 +00:00
|
|
|
@php
|
|
|
|
|
$error_number = 400;
|
|
|
|
|
@endphp
|
2018-10-31 19:40:43 +00:00
|
|
|
<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>
|
2019-12-16 13:26:11 +00:00
|
|
|
</html>
|