29 lines
1.4 KiB
HTML
29 lines
1.4 KiB
HTML
{% load i18n %}
|
|
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ LANGUAGE_CODE|default:'en' }}" dir="{% if LANGUAGE_CODE == 'ar' %}rtl{% else %}ltr{% endif %}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% trans "Response Submitted" %} - PX360</title>
|
|
<link rel="stylesheet" href="{% static 'dist/css/tailwind.css' %}">
|
|
<style>
|
|
body { font-family: 'Inter', sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-light min-h-screen flex items-center py-8 px-4">
|
|
<div class="w-full max-w-lg mx-auto text-center">
|
|
<div class="bg-white rounded-2xl shadow-lg p-10 border-2 border-slate-200">
|
|
<div class="w-20 h-20 bg-emerald-100 rounded-full flex items-center justify-center mx-auto mb-6">
|
|
<i data-lucide="check-circle" class="w-10 h-10 text-emerald-600"></i>
|
|
</div>
|
|
<h1 class="text-2xl font-bold text-navy mb-2">{% trans "Response Submitted Successfully" %}</h1>
|
|
<p class="text-slate mb-6">{% trans "Thank you for your response. It has been recorded in our system." %}</p>
|
|
<p class="text-sm text-slate-400">{% trans "Inquiry Reference:" %} #{{ inquiry.reference_number|default:inquiry.id }}</p>
|
|
</div>
|
|
</div>
|
|
<script src="{% static 'vendor/lucide/lucide.min.js' %}"></script>
|
|
<script>lucide.createIcons();</script>
|
|
</body>
|
|
</html>
|