diff options
author | Frederick Muriuki Muriithi | 2024-01-29 04:54:37 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-01-29 07:32:58 +0300 |
commit | b1b2bfbc71faa65210a17de7b6da55b25506607f (patch) | |
tree | b177306bc3b6d0ff7d53f02d61b57401d69fb7fc /gn_auth/templates | |
parent | 575119831dc107d9846050d9d99551a490ee1614 (diff) | |
download | gn-auth-b1b2bfbc71faa65210a17de7b6da55b25506607f.tar.gz |
Error handling: Handle 404 error.
Diffstat (limited to 'gn_auth/templates')
-rw-r--r-- | gn_auth/templates/404.html | 13 |
1 files changed, 13 insertions, 0 deletions
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%} + +<p> + The page "<strong>{{page}}</strong>" does not exist on this server. +</p> + +{%endblock%} |