14b3031e63
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/85d2244d-170a-48d3-8f6b-b4c124a49ed9
109 lines
5.0 KiB
HTML
109 lines
5.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ _("auth.verify_email_page_title") }}</title>
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
|
|
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
</head>
|
|
<body class="bg-gray-100 min-h-screen flex items-center justify-center py-8">
|
|
<main class="bg-white rounded-lg shadow-lg p-8 max-w-md w-full text-center" role="main">
|
|
<div class="flex justify-center mb-6">
|
|
<img src="/static/images/logo_writing.svg" alt="{{ _('auth.logo_alt') }}" class="h-16">
|
|
</div>
|
|
|
|
<div class="flex justify-center mb-4">
|
|
<div class="bg-indigo-100 rounded-full p-4">
|
|
<i class="fas fa-envelope-circle-check text-indigo-600 text-4xl" aria-hidden="true"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<h1 class="text-2xl font-bold text-gray-800 mb-2">{{ _("auth.verify_email_heading") }}</h1>
|
|
<p class="text-gray-600 mb-6">
|
|
{{ _("auth.verify_email_message") }}
|
|
</p>
|
|
<p class="text-sm text-gray-500 mb-8">
|
|
{{ _("auth.verify_email_expiry") }}
|
|
</p>
|
|
|
|
<div
|
|
x-data="{ email: '', loading: false, message: '', error: '' }"
|
|
class="border-t border-gray-100 pt-6"
|
|
>
|
|
<p class="text-sm text-gray-600 mb-3">{{ _("auth.verify_email_resend_prompt") }}</p>
|
|
|
|
<div x-show="message" x-cloak
|
|
class="bg-green-100 border-l-4 border-green-500 text-green-700 p-3 mb-4 rounded text-sm"
|
|
role="status" aria-live="polite">
|
|
<p x-text="message"></p>
|
|
</div>
|
|
<div x-show="error" x-cloak
|
|
class="bg-red-100 border-l-4 border-red-500 text-red-700 p-3 mb-4 rounded text-sm"
|
|
role="alert" aria-live="polite">
|
|
<p x-text="error"></p>
|
|
</div>
|
|
|
|
<form
|
|
@submit.prevent="async () => {
|
|
error = ''; message = '';
|
|
if (!email) { error = 'Please enter your email address.'; return; }
|
|
loading = true;
|
|
try {
|
|
const resp = await fetch('/api/auth/resend-verification', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ email })
|
|
});
|
|
if (resp.ok) {
|
|
message = 'Verification email resent. Please check your inbox.';
|
|
} else {
|
|
error = 'Something went wrong. Please try again.';
|
|
}
|
|
} catch(e) {
|
|
error = 'Network error. Please try again.';
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}"
|
|
class="space-y-3"
|
|
novalidate
|
|
>
|
|
<div>
|
|
<label for="resend-email" class="sr-only">{{ _("auth.verify_email_resend_label") }}</label>
|
|
<input
|
|
type="email" id="resend-email" name="email"
|
|
x-model="email"
|
|
placeholder="{{ _('auth.verify_email_resend_placeholder') }}"
|
|
autocomplete="email"
|
|
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring focus:ring-indigo-500 focus:ring-opacity-50 text-sm"
|
|
aria-label="{{ _('auth.verify_email_resend_aria_label') }}"
|
|
style="min-height:44px;"
|
|
>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
:disabled="loading"
|
|
class="w-full flex justify-center py-2 px-4 border border-indigo-600 rounded-md text-sm font-medium text-indigo-600 hover:bg-indigo-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 disabled:opacity-50"
|
|
style="min-height:44px;"
|
|
>
|
|
<span x-show="!loading">{{ _("auth.verify_email_resend_button") }}</span>
|
|
<span x-show="loading" x-cloak>
|
|
<i class="fas fa-spinner fa-spin mr-2" aria-hidden="true"></i>{{ _("common.loading") }}
|
|
</span>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="mt-6 text-center">
|
|
<a href="/login" class="text-sm font-medium text-blue-600 hover:text-blue-500">
|
|
{{ _("auth.verify_email_back_sign_in") }}
|
|
</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|