-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#56 - try again to fix the safari sign in bug
- Loading branch information
Showing
5 changed files
with
75 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<x-layout.web class="flex flex-col flex-grow justify-center bg-white"> | ||
|
||
<div class="py-12 px-4 mx-auto max-w-7xl text-center sm:px-6 lg:py-16 lg:px-8"> | ||
{{ $slot }} | ||
|
||
<div class="flex justify-center mt-12"> | ||
<div class="inline-flex rounded-md shadow"> | ||
<a href="{{ url('/') }}" class="inline-flex justify-center items-center py-3 px-5 space-x-2 text-base font-medium text-white bg-brand-600 rounded-md border border-transparent hover:bg-brand-700"> | ||
<x-far-home class="w-4 h-4 text-gray-100"/> | ||
<span>back home</span> | ||
</a> | ||
</div> | ||
<div class="inline-flex ml-3"> | ||
<a href="https://github.com/Astrotomic/opendor.me/issues/new?labels=bug" class="inline-flex justify-center items-center py-3 px-5 space-x-2 text-base font-medium text-gray-700 bg-gray-100 rounded-md border border-transparent hover:bg-gray-200"> | ||
<x-far-bug class="w-4 h-4 text-gray-500"/> | ||
<span>report bug</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</x-layout.web> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@push('javascript') | ||
@env('frosty-pond', 'divine-forest') | ||
<script nonce="{{ csp_nonce() }}"> | ||
window.plausible("404", { props: { path: document.location.pathname } }) | ||
</script> | ||
@endenv | ||
@endpush | ||
|
||
<x-layout.error> | ||
<x-fal-alien-monster class="mx-auto w-24 h-24 text-gray-400"/> | ||
|
||
<div class="mt-6 space-y-2"> | ||
<h1 class="text-3xl font-extrabold tracking-tight text-gray-900 uppercase sm:text-4xl"> | ||
Error <span class="text-gray-400">424</span> | ||
</h1> | ||
<h2 class="text-2xl font-extrabold tracking-tight text-gray-900 sm:text-3xl"> | ||
Invalid oAuth State | ||
</h2> | ||
</div> | ||
</x-layout.error> |