Add a default error message to the error template

This commit is contained in:
Montana 2018-10-09 09:55:11 -04:00
parent 3c95063293
commit f36446efac

View File

@ -4,7 +4,11 @@
<main class="usa-section usa-content">
<h1>{{ message }}</h1>
{% if message %}
<h1>{{ message }}</h1>
{% else %}
<h1>An error occurred.</h1>
{% endif %}
</main>