fix(auth): check for discord callback error status, update string copy

This commit is contained in:
2023-08-16 01:04:56 +01:00
parent 3fd397e858
commit 7dca30b57d
749 changed files with 12 additions and 4 deletions

0
resources/views/breadcrumbs/app.blade.php Executable file → Normal file
View File

0
resources/views/breadcrumbs/auth/main.blade.php Executable file → Normal file
View File

0
resources/views/breadcrumbs/dashboard/footer.blade.php Executable file → Normal file
View File

0
resources/views/breadcrumbs/footer.blade.php Executable file → Normal file
View File

6
resources/views/breadcrumbs/header.blade.php Executable file → Normal file
View File

@@ -142,21 +142,21 @@
<img class="d-inline mb-4" src="{{ asset('img/500.svg') }}" width="350px" alt="500 illustration">
<h1>{{ __('500 - Internal Server Error') }}</h1>
<p>{{ __("Whelp! It looks like our servers went up in flames. Don't worry, it's not your fault. Our developers have been notified & are already extinguishing the flames and repairing the damage. ") }}</p>
<p>{{ __('"Oops! Something went wrong on our end. :emoji Please bear with us while we work to fix the issue and get things back on track. In the meantime, if you have any questions or concerns, feel free to reach out to our support team. We apologize for any inconvenience this may have caused."', ['emoji' => '😔']) }}</p>
@break;
@case(401)
<img class="d-inline mb-4" src="{{ asset('img/401.svg') }}" width="350px" alt="401 illustration">
<h1>{{ __('401 - Unauthorized') }}</h1>
<p>{{ __('You need to be authenticated to access this page. Believe this is a mistake? Contact us and let us know! ') }}</p>
<p>{{ $exception->getMessage() }}</p>
@break;
@case(403)
<img class="d-inline mb-4" src="{{ asset('img/403.svg') }}" width="350px" alt="403 illustration">
<h1>{{ __('403 - Forbidden') }}</h1>
<p>{{ __('Hey there! It looks like you don\'t have permission to access this resource. This may be because you don\'t have the appropriate roles, or because you\'ve been suspended. Believe this is a mistake? Contact us and we\'ll sort it out!') }}</p>
<p>{{ $exception->getMessage() }}</p>
@break;
@case(503)