30 lines
1.4 KiB
HTML
30 lines
1.4 KiB
HTML
{% load i18n %}
|
|
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ LANGUAGE_CODE|default:'en' }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% trans "Error" %} - PX360</title>
|
|
<link rel="stylesheet" href="{% static 'dist/css/tailwind.css' %}">
|
|
<link rel="stylesheet" href="{% static 'vendor/fonts/inter/latin.css' %}">
|
|
<style>
|
|
body { font-family: 'Inter', sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50 min-h-screen flex items-center py-8 px-4">
|
|
<div class="w-full max-w-xl mx-auto">
|
|
<div class="bg-white rounded-2xl shadow-lg border border-gray-200 p-8 text-center">
|
|
<div class="w-20 h-20 mx-auto bg-red-100 rounded-full flex items-center justify-center mb-6">
|
|
<svg class="w-10 h-10 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
|
|
</svg>
|
|
</div>
|
|
<h1 class="text-2xl font-bold text-gray-800 mb-2">{% trans "Something went wrong" %}</h1>
|
|
<p class="text-gray-500">{{ error|default:"An unexpected error occurred." }}</p>
|
|
</div>
|
|
<p class="text-center text-gray-400 text-xs mt-6">{% trans "PX360 Complaint Management System" %}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|