summaryrefslogtreecommitdiff
path: root/templates/error.django
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-12-19 18:52:39 +0530
committerBobby <[email protected]>2025-12-19 18:52:39 +0530
commited74f2cffa902a3e9aeb614f8dcf65f04658a597 (patch)
treea86fe689686774b2915608a511ba57822b0b6521 /templates/error.django
parenta42fcbc8149f482d65a53ddcdc7bcfaaea359c69 (diff)
downloadlain-ed74f2cffa902a3e9aeb614f8dcf65f04658a597.tar.xz
lain-ed74f2cffa902a3e9aeb614f8dcf65f04658a597.zip
error controllers, types and templates and layouts
Diffstat (limited to 'templates/error.django')
-rw-r--r--templates/error.django8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/error.django b/templates/error.django
new file mode 100644
index 0000000..f766688
--- /dev/null
+++ b/templates/error.django
@@ -0,0 +1,8 @@
+{% extends 'layouts/generic.django' %}
+{% block content %}
+ <div class="error-container">
+ <h1>{{ ErrorTitle }}</h1>
+ <p>{{ ErrorMessage }}</p>
+ <a href="{% url 'auth.login' %}">Go back home</a>
+ </div>
+{% endblock %}