diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-31 18:02:31 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-01 11:41:12 -0800 |
commit | 50a2774a02993b36838e4672d395a314233c4f16 (patch) | |
tree | 3054ad17dfd6d6090bdfd9f99cbb31d8aa820fde /python/fatcat_web/templates/403.html | |
parent | 05f985e83a9d6bfeb05b94e7ea058bb1dc360249 (diff) | |
download | fatcat-50a2774a02993b36838e4672d395a314233c4f16.tar.gz fatcat-50a2774a02993b36838e4672d395a314233c4f16.zip |
better flask error pages
Diffstat (limited to 'python/fatcat_web/templates/403.html')
-rw-r--r-- | python/fatcat_web/templates/403.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/403.html b/python/fatcat_web/templates/403.html new file mode 100644 index 00000000..14c31bb2 --- /dev/null +++ b/python/fatcat_web/templates/403.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block body %} + +<center> +<div style="font-size: 8em;">403</div> +<div style="font-size: 3em;">Not Authorized</div> + +<p>You might need to log in, or your account may not (yet!) have privileges to +complete the attempted action. + +<p>This could also just mean that you need to log out and log back in. Sorry +about that! +</center> + +{% endblock %} |