37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
@extends('layouts.nova')
|
|
|
|
@section('content')
|
|
<div class="px-4 py-8 md:px-6 md:py-10">
|
|
<div class="mx-auto w-full max-w-xl rounded-2xl border border-sb-line bg-panel-dark shadow-sb p-6 md:p-8">
|
|
<h1 class="text-2xl font-semibold text-white">Verify Your Email</h1>
|
|
<p class="mt-2 text-sm text-sb-muted">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
|