Files
bugsink/templates/404.html
Klaas van Schelven 123bc41b93 User registration
2024-05-29 15:43:00 +02:00

12 lines
230 B
HTML

{% extends "bare_base.html" %}
{% block title %}404 Not Found{% endblock %}
{% block content %}
<div class="m-4">
<h1 class="text-4xl mt-4 font-bold">Not Found</h1>
<div class="pt-2">{{ exception }}</div>
</div>
{% endblock %}