38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
@extends('layouts.nova')
|
|
|
|
@section('content')
|
|
<div class="flex-1 flex items-center justify-center px-6 py-16 min-h-[calc(100vh-4rem)] box-border">
|
|
<div class="max-w-5xl w-full">
|
|
<div class="rounded-2xl border border-white/10 bg-slate-900/70 backdrop-blur shadow-xl p-8 auth-card">
|
|
<h2 class="text-2xl font-semibold mb-2 text-white">Verify Your Email</h2>
|
|
<p class="text-sm text-white/60 mb-6">Before getting started, please verify your email address by clicking the link we sent you.</p>
|
|
|
|
@if (session('status') == 'verification-link-sent')
|
|
<div class="mb-4 rounded-md border border-green-700/60 bg-green-900/20 px-3 py-2 text-sm text-green-300">
|
|
{{ __('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>
|
|
<x-primary-button>
|
|
{{ __('Resend Verification Email') }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
|
|
<form method="POST" action="{{ route('logout') }}">
|
|
@csrf
|
|
|
|
<button type="submit" class="underline text-sm text-sb-muted hover:text-white rounded-md">
|
|
{{ __('Log Out') }}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|