]> git.localhorst.tv Git - alttp.git/blob - resources/views/auth/verify-email.blade.php
add discord auth
[alttp.git] / resources / views / auth / verify-email.blade.php
1 <x-guest-layout>
2     <x-auth-card>
3         <x-slot name="logo">
4             <a href="/">
5                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" />
6             </a>
7         </x-slot>
8
9         <div class="mb-4 text-sm text-gray-600">
10             {{ __('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.') }}
11         </div>
12
13         @if (session('status') == 'verification-link-sent')
14             <div class="mb-4 font-medium text-sm text-green-600">
15                 {{ __('A new verification link has been sent to the email address you provided during registration.') }}
16             </div>
17         @endif
18
19         <div class="mt-4 flex items-center justify-between">
20             <form method="POST" action="{{ route('verification.send') }}">
21                 @csrf
22
23                 <div>
24                     <x-button>
25                         {{ __('Resend Verification Email') }}
26                     </x-button>
27                 </div>
28             </form>
29
30             <form method="POST" action="{{ route('logout') }}">
31                 @csrf
32
33                 <button type="submit" class="underline text-sm text-gray-600 hover:text-gray-900">
34                     {{ __('Log Out') }}
35                 </button>
36             </form>
37         </div>
38     </x-auth-card>
39 </x-guest-layout>