diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-26 00:08:58 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-07-29 18:10:50 +0100 |
commit | 8e81858470c2b09e22b383e14ee5439cfc4e6e53 (patch) | |
tree | 32d64a1709d301f5bfdb1eb12db436013135f76a /resources/views/errors | |
parent | 5a39e2a7962d88fb0fbad0c0dfdc54a1f6c2eddb (diff) |
Update
Diffstat (limited to 'resources/views/errors')
-rw-r--r-- | resources/views/errors/generic-error.blade.php | 2 | ||||
-rw-r--r-- | resources/views/errors/guestbook-ipban.blade.php | 4 | ||||
-rw-r--r-- | resources/views/errors/guestbook-ratelimit.blade.php | 4 | ||||
-rw-r--r-- | resources/views/errors/no-auth.blade.php | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/resources/views/errors/generic-error.blade.php b/resources/views/errors/generic-error.blade.php index 9764a02..6f08ea5 100644 --- a/resources/views/errors/generic-error.blade.php +++ b/resources/views/errors/generic-error.blade.php @@ -2,7 +2,7 @@ @section('title', 'Error 401: Unauthorized User!') @section('content') <h1>{{ $error }}</h1> - <hr/> + <hr> @if(isset($description)) <p>{{ $description }}</p> @endif diff --git a/resources/views/errors/guestbook-ipban.blade.php b/resources/views/errors/guestbook-ipban.blade.php index 257dd72..386d22a 100644 --- a/resources/views/errors/guestbook-ipban.blade.php +++ b/resources/views/errors/guestbook-ipban.blade.php @@ -2,11 +2,11 @@ @section('title', 'Error 403: IP Blocked!') @section('content') <h1>Error 403: IP Blocked!</h1> - <hr/> + <hr> <p>Your IP has been banned from submitting to the guestbook.</p> @if (isset($reason)) <p><b>Reason:</b> {{ $reason }}</p> @endif - <br/> + <br> Click <a href="/guestbook">here</a> to go back to the guestbook. @stop diff --git a/resources/views/errors/guestbook-ratelimit.blade.php b/resources/views/errors/guestbook-ratelimit.blade.php index 1890789..7fecd97 100644 --- a/resources/views/errors/guestbook-ratelimit.blade.php +++ b/resources/views/errors/guestbook-ratelimit.blade.php @@ -2,9 +2,9 @@ @section('title', 'Error 429: Overclocking Detected!') @section('content') <h1>Error 429: Overclocking Detected!</h1> - <hr/> + <hr> <p>Whoa there! Your submissions are going at warp speed.</p> <p>Remember you can only submit an entry <u>once every hour</u>!</p> - <br/> + <br> Click <a href="/guestbook">here</a> to go back to the guestbook. @stop diff --git a/resources/views/errors/no-auth.blade.php b/resources/views/errors/no-auth.blade.php index 8682010..1d99498 100644 --- a/resources/views/errors/no-auth.blade.php +++ b/resources/views/errors/no-auth.blade.php @@ -2,7 +2,7 @@ @section('title', 'Error 401: Unauthorized User!') @section('content') <h1>Error 401: Unauthorized User!</h1> - <hr/> + <hr> <p>Woah there! Only authorized users can access this page. Please <a href="/login">log in</a> to proceed.</p> <p>Ended up here on accident? Click <a href="/">here</a> to return to the homepage</u>!</p> @stop |