spotdlweb/templates/404.html
2023-01-07 17:13:33 +01:00

14 lines
338 B
HTML

{% extends 'layout.html' %}
{% block body %}
<body>
<div class="container">
<h1>Error 404</h1>
<h2>Il semble que vous soyez perdu. Revenez à la page d'accueil</h2>
<button class="btn" onclick="window.location.href = '/';">Accueil</button>
</div>
</body>
{% endblock body %}