quiz-the-word/templates/error.html
Matthew Welch b4efbc8f3f Added user authentication for the admin site
Added error pages for 404 and 500 codes
Added site icon
2021-03-22 16:23:52 -07:00

8 lines
159 B
HTML

{% extends "base.html" %}
{% block body %}
<div class="mt-5 container">
<h1>{{ error_code }}</h1>
<p>{{ error_msg }}</p>
</div>
{% endblock %}