diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-06 00:49:09 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-06 00:49:09 +0100 |
commit | d1cd72c5f88c581b8e446f3c92c0eb093500c60e (patch) | |
tree | 0b40a627ee461f1d03ca4b1a94e0c09d67b55e32 /templates/errors/generic.html | |
parent | 6d6bec35f271b5ff072a884fbfc31f5b9cb36642 (diff) | |
download | troggle-d1cd72c5f88c581b8e446f3c92c0eb093500c60e.tar.gz troggle-d1cd72c5f88c581b8e446f3c92c0eb093500c60e.tar.bz2 troggle-d1cd72c5f88c581b8e446f3c92c0eb093500c60e.zip |
New user login/logoff system using standard Dj
Diffstat (limited to 'templates/errors/generic.html')
-rw-r--r-- | templates/errors/generic.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/errors/generic.html b/templates/errors/generic.html new file mode 100644 index 0000000..a626a5a --- /dev/null +++ b/templates/errors/generic.html @@ -0,0 +1,25 @@ +{% extends 'base.html' %} + +{% block title %}Website Error - {% endblock %} +{% block content %} + +<div class='middle'> + <h2>Website Error</h2> +</div> +<div style='width: 300px;' class='middle3 login'> + <div class='align-center'> + <div class='space'></div> + <div class='align-center'> + <h3>There has been an error.</h3> + <p>We are terribly sorry but an unknown fault has occurred. </p> + + + </div> +</div> +</div> + + + + + +{% endblock %}
\ No newline at end of file |