Add templates for 404, 500

This commit is contained in:
Klaas van Schelven
2024-05-22 09:37:51 +02:00
parent 7c760ba546
commit 9fcbfb9033
3 changed files with 47 additions and 0 deletions

12
templates/500.html Normal file
View File

@@ -0,0 +1,12 @@
{% extends "bare_base.html" %}
{% block title %}500 Server Error{% endblock %}
{% block content %}
<div class="m-4">
<h1 class="text-4xl mt-4 font-bold">500 Server Error</h1>
<div class="pt-2">
There was an internal server error.
</div>
{% endblock %}