mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
Updated the language of the email confirmation page to be more clear in that the user must click the button to receive the verification email.
46 lines
1.9 KiB
PHP
46 lines
1.9 KiB
PHP
<x-guest-layout>
|
|
<x-authentication-card>
|
|
<x-slot name="logo">
|
|
<x-authentication-card-logo />
|
|
</x-slot>
|
|
|
|
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ __('Before continuing, please verify your email address. Click the button below and check your email for a verification link.') }}
|
|
</div>
|
|
|
|
@if (session('status') == 'verification-link-sent')
|
|
<div class="mb-4 font-medium text-sm text-green-600 dark:text-green-400">
|
|
{{ __('A verification link has been sent to the email address you provided in your profile settings.') }}
|
|
</div>
|
|
@endif
|
|
|
|
<div class="mt-4 flex items-center justify-between">
|
|
<form method="POST" action="{{ route('verification.send') }}">
|
|
@csrf
|
|
|
|
<div>
|
|
<x-button type="submit">
|
|
{{ __('Send Verification Email') }}
|
|
</x-button>
|
|
</div>
|
|
</form>
|
|
|
|
<div>
|
|
<a
|
|
href="{{ route('profile.show') }}"
|
|
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-gray-500"
|
|
>
|
|
{{ __('Edit Profile') }}</a>
|
|
|
|
<form method="POST" action="{{ route('logout') }}" class="inline">
|
|
@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-gray-500 ms-2">
|
|
{{ __('Log Out') }}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</x-authentication-card>
|
|
</x-guest-layout>
|