diff options
author | ubq323 <ubq323> | 2021-11-06 17:48:02 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-11-06 17:48:02 +0000 |
commit | 828aa456e72bcaf6e46d5fd17792f08d4dcfc62f (patch) | |
tree | e687033ef10eddd39dd98c8d780c1c01a77f33be /apioforum/templates | |
parent | 00e0b45a731a6de8dff4106ec8686d70189ca182 (diff) |
404 and 403 pages now use main layout
Diffstat (limited to 'apioforum/templates')
-rw-r--r-- | apioforum/templates/err/403.html | 8 | ||||
-rw-r--r-- | apioforum/templates/err/404.html | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/apioforum/templates/err/403.html b/apioforum/templates/err/403.html new file mode 100644 index 0000000..bae6857 --- /dev/null +++ b/apioforum/templates/err/403.html @@ -0,0 +1,8 @@ +{% extends 'base.html' %} +{% block header %} +<h1>{% block title %}403 forbidden{% endblock %}</h1> +{% endblock %} + +{% block content %} +<p>you don't have permission to access the requested page</p> +{% endblock %} diff --git a/apioforum/templates/err/404.html b/apioforum/templates/err/404.html new file mode 100644 index 0000000..5b0030e --- /dev/null +++ b/apioforum/templates/err/404.html @@ -0,0 +1,8 @@ +{% extends 'base.html' %} +{% block header %} +<h1>{% block title %}404 not found{% endblock %}</h1> +{% endblock %} + +{% block content %} +<p>the requested url was not found on the server. if you entered the url manually please check your spelling and try again</p> +{% endblock %} |