aboutsummaryrefslogtreecommitdiff
path: root/templates/error.django
blob: 8c1521d80e469156c43994271b453634e54d9ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layouts/base.django" %}

{% block content %}
<div class="min-h-screen flex items-center justify-center bg-gray-950">
    <div class="text-center space-y-4">
        <h1 class="text-6xl font-bold text-gray-600">Error</h1>
        <p class="text-gray-400">{{ ErrorMessage }}</p>
        <a href="/" class="inline-block mt-4 text-sm text-blue-400 hover:text-blue-300 transition">Go back home</a>
    </div>
</div>
{% endblock %}