86 lines
3.3 KiB
HTML
86 lines
3.3 KiB
HTML
{% load i18n %}
|
|
{% load allauth %}
|
|
{% load account %}
|
|
{% get_current_language_bidi as LANGUAGE_BIDI %}
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<!DOCTYPE html>
|
|
<html lang="{{LANGUAGE_CODE}}" dir="{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% trans "Verify Email" %}-KAAUH ATS </title>
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'temple-red': '#9d2235',
|
|
'temple-dark': '#1a1a1a',
|
|
'temple-cream': '#f8f7f2',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
|
|
body { font-family: 'Inter', sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-temple-cream min-h-screen flex items-center justify-center p-6">
|
|
|
|
<div class="w-full max-w-md">
|
|
<div class="bg-white rounded-2xl shadow-xl border border-gray-100 p-8 text-center">
|
|
|
|
<div class="inline-flex items-center justify-center w-20 h-20 rounded-full bg-temple-red/10 mb-6">
|
|
<i data-lucide="mail-check" class="w-10 h-10 text-temple-red"></i>
|
|
</div>
|
|
|
|
<h1 class="text-2xl font-bold text-gray-900 mb-4">
|
|
{% trans "Verify Your Email Address" %}
|
|
</h1>
|
|
|
|
<div class="text-left space-y-4">
|
|
<p class="text-gray-600">
|
|
{% blocktrans %}
|
|
We have sent an email to your email id for verification. Follow the link provided to finalize the signup process.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p class="text-gray-500 text-sm">
|
|
{% trans "If you do not see the verification email in your main inbox, please check your spam folder." %}
|
|
</p>
|
|
|
|
<p class="text-gray-500 text-sm">
|
|
{% trans "Please contact us if you do not receive the verification email within a few minutes." %}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="my-6 border-t border-gray-200"></div>
|
|
|
|
<div class="space-y-3">
|
|
<a href="{% url 'account_email' %}"
|
|
class="inline-flex items-center justify-center gap-2 w-full bg-gray-100 hover:bg-gray-200 text-gray-700 font-semibold py-4 rounded-xl text-sm transition">
|
|
<i data-lucide="mail" class="w-5 h-5"></i>
|
|
{% trans "Change or Resend Email" %}
|
|
</a>
|
|
|
|
<a href="{% url 'account_login' %}"
|
|
class="inline-flex items-center justify-center gap-2 w-full bg-temple-red hover:bg-[#7a1a29] text-white font-semibold py-4 rounded-xl text-sm transition shadow-md hover:shadow-lg">
|
|
<i data-lucide="log-in" class="w-5 h-5"></i>
|
|
{% trans "Go to Sign In" %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
</html> |