auth/tauth/templates/404.html

10 lines
242 B
HTML
Raw Permalink Normal View History

2024-12-20 08:59:39 -05:00
{% extends "base.html" %}
2024-12-24 12:14:53 -05:00
{% block title %}Page Not Found - {% endblock %}
2024-12-20 23:44:31 -05:00
{% block body %}
2024-12-20 08:59:39 -05:00
<h1>Hmm. That doesn't look right.</h1>
Make sure the URL is correct and try again.
<small>(Error 404 - Page not found)</small>
{% endblock %}