Attendize/resources/views/Public/Errors/Missing.blade.php

28 lines
650 B
PHP

<html>
<head>
<title>
@lang("basic.whoops")
</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>404!</h2>
@lang("basic.error_404")
</div>
</body>
</html>