Learning-Management-System/lms/templates/404.html
Ahmed Nagi e58c9c1f71 Update
2025-01-10 19:54:55 +02: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 %}