10 lines
263 B
HTML

{% extends 'error_handler_base.html' %}
{% block content %}
<div class="text-center mt-5">
<h1>404</h1>
<p>Looks like the page you're looking for is does not exist.</p>
<a href="/" class="link">&LeftArrow; Return to the app</a>
</div>
{% endblock %}