From b1b2bfbc71faa65210a17de7b6da55b25506607f Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 29 Jan 2024 04:54:37 +0300 Subject: Error handling: Handle 404 error. --- gn_auth/templates/404.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gn_auth/templates/404.html (limited to 'gn_auth/templates') diff --git a/gn_auth/templates/404.html b/gn_auth/templates/404.html new file mode 100644 index 0000000..e17bfe8 --- /dev/null +++ b/gn_auth/templates/404.html @@ -0,0 +1,13 @@ +{%extends "base.html"%} + +{%block title%}404: Page Not Found{%endblock%} + +{%block pagetitle%}404: Could Not Find the Requested Page{%endblock%} + +{%block content%} + +

+ The page "{{page}}" does not exist on this server. +

+ +{%endblock%} -- cgit v1.2.3