53 lines
1.9 KiB
PHP
53 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Verify Email Address - RentalMobil</title>
|
|
@vite('resources/css/app.css')
|
|
<link href="https://fonts.googleapis.com/css2?family=Ancizar+Serif&family=Lora&display=swap" rel="stylesheet" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style>
|
|
.font-lora {
|
|
font-family: 'Lora', serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="bg-gradient-to-b from-[#e0e7ff] to-[#1e3a8a] min-h-screen flex items-center justify-center p-6 font-lora text-[#1e3a8a]">
|
|
|
|
<div class="max-w-md w-full bg-white rounded-lg shadow-lg border border-[#e0e7ff] p-8">
|
|
<h2 class="text-3xl font-bold mb-6 text-center">Verify Your Email Address</h2>
|
|
|
|
@if (session('status') == 'verification-link-sent')
|
|
<div class="mb-4 text-sm text-green-600 font-medium">
|
|
{{ __('A new verification link has been sent to your email address.') }}
|
|
</div>
|
|
@endif
|
|
|
|
<div class="mb-4 text-sm text-gray-600">
|
|
{{ __('Before proceeding, please check your email for a verification link.') }}
|
|
{{ __('If you did not receive the email') }},
|
|
</div>
|
|
|
|
<form method="POST" action="{{ route('verification.send') }}">
|
|
@csrf
|
|
<button type="submit"
|
|
class="w-full bg-[#1e3a8a] text-white font-semibold py-2 rounded-md shadow hover:bg-[#3344aa] transition">
|
|
{{ __('Click here to request another') }}
|
|
</button>
|
|
</form>
|
|
|
|
<form method="POST" action="{{ route('logout') }}" class="mt-6">
|
|
@csrf
|
|
<button type="submit"
|
|
class="w-full bg-gray-400 text-white font-semibold py-2 rounded-md shadow hover:bg-gray-500 transition">
|
|
{{ __('Logout') }}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|