-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Media Show and delete issues (#29)
* Fix: Media Show and delete issues * Fix styling by bot --------- Co-authored-by: anisAronno <[email protected]>
- Loading branch information
1 parent
10855dd
commit d71965f
Showing
7 changed files
with
105 additions
and
66 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,32 +1,36 @@ | ||
<x-guest-layout> | ||
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400"> | ||
{{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }} | ||
</div> | ||
<div class=" min-h-screen flex justify-center"> | ||
<div class="max-w-[500px] md:mt-[5%] space-y-5"> | ||
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400"> | ||
{{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }} | ||
</div> | ||
|
||
@if (session('status') == 'verification-link-sent') | ||
<div class="mb-4 font-medium text-sm text-green-600 dark:text-green-400"> | ||
{{ __('A new verification link has been sent to the email address you provided during registration.') }} | ||
</div> | ||
@endif | ||
@if (session('status') == 'verification-link-sent') | ||
<div class="mb-4 font-medium text-sm text-green-600 dark:text-green-400"> | ||
{{ __('A new verification link has been sent to the email address you provided during registration.') }} | ||
</div> | ||
@endif | ||
|
||
<div class="mt-4 flex items-center justify-between"> | ||
<form method="POST" action="{{ route('verification.send') }}"> | ||
@csrf | ||
<div class="mt-4 flex items-center justify-between"> | ||
<form method="POST" action="{{ route('verification.send') }}"> | ||
@csrf | ||
|
||
<div> | ||
<x-primary-button> | ||
{{ __('Resend Verification Email') }} | ||
</x-primary-button> | ||
</div> | ||
</form> | ||
<div> | ||
<x-primary-button> | ||
{{ __('Resend Verification Email') }} | ||
</x-primary-button> | ||
</div> | ||
</form> | ||
|
||
<form method="POST" action="{{ route('logout') }}"> | ||
@csrf | ||
<form method="POST" action="{{ route('logout') }}"> | ||
@csrf | ||
|
||
<button type="submit" | ||
class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"> | ||
{{ __('Log Out') }} | ||
</button> | ||
</form> | ||
<button type="submit" | ||
class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"> | ||
{{ __('Log Out') }} | ||
</button> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</x-guest-layout> |
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