Files
django_wallet/templates/404.html
2025-02-01 19:16:33 +01:00

11 lines
258 B
HTML

{% extends 'layouts/blank.html' %} {% block content %}
<div class="container text-center py-5">
<h1 class="display-1">Page not found</h1>
<p class="my-4 text-muted">
Error 404: This page doesn't exist or is unavailable
</p>
</div>
{% endblock %}