Add a 403 error page (#63)

This commit is contained in:
Michael Manfre 2022-11-27 14:09:37 -05:00 committed by GitHub
parent 8e9e3ecf69
commit a5819fa64a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
templates/403.html Normal file
View file

@ -0,0 +1,6 @@
{% extends "base.html" %}
{% block content %}
<h1>Permission Denied</h1>
<p>I'm Sorry. I'm afraid I can't do that.</p>
{% endblock %}