Added 404/419 status pages
This commit is contained in:
parent
bd85f8b055
commit
7bb3e12f66
31
public/oldschool/css/main.css
vendored
31
public/oldschool/css/main.css
vendored
@ -704,6 +704,37 @@ a.goback:focus:before {
|
||||
color:#fff
|
||||
}
|
||||
|
||||
a.link,
|
||||
a.link:link,
|
||||
a.link:visited {
|
||||
display:inline-block;
|
||||
text-decoration:none;
|
||||
color:#0a0;
|
||||
padding:.5em 0 0 1ch;
|
||||
margin:0 0 0 3ch;
|
||||
}
|
||||
a.link:active,
|
||||
a.link:hover {
|
||||
color:#5f5;
|
||||
background-color:#333
|
||||
}
|
||||
a.link:focus {
|
||||
color:#5ff;
|
||||
background-color:#333;
|
||||
outline:0
|
||||
}
|
||||
a.link:after {
|
||||
color:#a00;
|
||||
content:"\a0\25BA\25BA"
|
||||
}
|
||||
a.link:active:after,
|
||||
a.link:hover:after {
|
||||
color:#f55
|
||||
}
|
||||
a.link:focus:after {
|
||||
color:#fff
|
||||
}
|
||||
|
||||
.gohome {
|
||||
text-align:right;
|
||||
float:right
|
||||
|
15
resources/views/errors/404.blade.php
Normal file
15
resources/views/errors/404.blade.php
Normal file
@ -0,0 +1,15 @@
|
||||
@extends('layouts.auth')
|
||||
|
||||
@section('htmlheader_title')
|
||||
404
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-6 m-auto">
|
||||
<h3>404 - Not found?</h3>
|
||||
<p>Sorry, I cant find what you are looking for. Try again?</p>
|
||||
<p><a href="{{ url('/') }}" class="goback">Home</a></p>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
15
resources/views/errors/419.blade.php
Normal file
15
resources/views/errors/419.blade.php
Normal file
@ -0,0 +1,15 @@
|
||||
@extends('layouts.auth')
|
||||
|
||||
@section('htmlheader_title')
|
||||
419
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-6 m-auto">
|
||||
<h3>419 - Page expired</h3>
|
||||
<p>That page has expired, you'll need to reload it and submit it again.</p>
|
||||
<p><a href="{{ url('/') }}" class="goback">Home</a><a class="link float-end" href="{{ request()->url() }}">Reload</a></p>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
Loading…
Reference in New Issue
Block a user