Add 404 and 403 error pages

This commit is contained in:
Dane Everitt 2017-01-17 20:28:47 -05:00
parent e075b9061e
commit d3d1b88135
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 176 additions and 0 deletions

View file

@ -2,6 +2,18 @@
return [
'validation_error' => 'There was an error with one or more fields in the request.',
'errors' => [
'return' => 'Return to Previous Page',
'home' => 'Go Home',
'403' => [
'header' => 'Forbidden',
'desc' => 'You do not have permission to access this resource on this server.',
],
'404' => [
'header' => 'File Not Found',
'desc' => 'We were unable to locate the requested resource on the server.',
],
],
'index' => [
'header' => 'Your Servers',
'header_sub' => 'Servers you own and have access to.',