Skip to content

Commit b095057

Browse files
tweak styling of resend verification link
1 parent 81ea388 commit b095057

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/tailwindcss-stubs/resources/views/auth/verify.blade.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
</div>
1818

1919
<div class="w-full flex flex-wrap p-6">
20-
<p class="leading-normal mb-6">
20+
<p class="leading-normal">
2121
{{ __('Before proceeding, please check your email for a verification link.') }}
2222
</p>
2323

24-
{{ __('If you did not receive the email') }},
25-
<form class="inline" method="post" action="{{ route('verification.resend') }}">
24+
<p class="leading-normal mt-6">
25+
{{ __('If you did not receive the email') }}, <a class="text-blue-500 hover:text-blue-700 no-underline" onclick="event.preventDefault(); document.getElementById('resend-verification-form').submit();">{{ __('click here to resend another') }}</a>.
26+
</p>
27+
28+
<form id="resend-verification-form" action="{{ route('verification.resend') }}" class="hidden">
2629
@csrf
27-
<button class="bg-blue-500 hover:bg-blue-700 text-gray-100 font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline no-underline mx-auto">
28-
{{ __('click here to resend another') }}
29-
</button>
3030
</form>
3131
</div>
3232

0 commit comments

Comments
 (0)