62 lines
2.2 KiB
HTML
62 lines
2.2 KiB
HTML
{% load i18n %}
|
|
{% 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 "Password Reset Complete" %}</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="check-circle" class="w-10 h-10 text-temple-red"></i>
|
|
</div>
|
|
|
|
<h1 class="text-2xl font-bold text-gray-900 mb-4">
|
|
{% trans "Password Reset Complete" %}
|
|
</h1>
|
|
|
|
<p class="text-gray-600 mb-6">
|
|
{% trans "Your password has been successfully reset. You can now sign in with your new password." %}
|
|
</p>
|
|
|
|
<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-3 rounded-xl text-sm transition shadow-sm hover:shadow-md">
|
|
<i data-lucide="log-in" class="w-4 h-4"></i>
|
|
{% trans "Sign In Now" %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
</html> |