Learning-Management-System/backend/lms/templates/404.html
2025-01-22 11:23:14 +00:00

13 lines
286 B
HTML

{% extends "base.html" %}
{% block title %}Page not found{% endblock title %}
{% block content %}
<h1>Page not found</h1>
<p>
{% if exception %}
{{ exception }}
{% else %}
This is not the page you were looking for.
{% endif %}
</p>
{% endblock content %}