datasaur/site/surveyapp/templates/errors/404.html
2026-01-25 15:56:01 +00:00

12 lines
289 B
HTML

{% extends 'layout.html' %}
{% block content %}
<main class="container">
<div class="bg-white rounded shadow-sm border mt-4 p-3 primary-colour">
<h1>Oops, could not find that page (404)</h1>
<p>Please try a different url</p>
</div>
</main>
{% endblock content %}