add error handler pages for 400, 404, 500

This commit is contained in:
2021-02-21 19:35:52 -06:00
parent e570ee26b5
commit 39d78af524
8 changed files with 83 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block header %}
<div class="header">
<a href="/">{{ config.TITLE_SUFFIX }}</a>
</div>
{% endblock %}
{% block body %}
<div class="content">
<h1>BAD REQUEST</h1>
<p>You're doing something you're not supposed to. Stop it?</p>
</div>
{% endblock %}