This commit is contained in:
√(noham)²
2023-04-07 23:15:56 +02:00
parent 6c30975f67
commit ebe21a776f
20 changed files with 396 additions and 306 deletions

24
templates/405.html Normal file
View File

@@ -0,0 +1,24 @@
{% extends 'template.html' %}
{% block title %}
405
{% endblock %}
{% block head %}
<link href="{{ url_for('static', filename='css/erreur.css') }}" rel="stylesheet" />
{% endblock %}
{% block content %}
<div id="content2">
<h1>Erreur</h1>
<h2>Not found</h2>
<div class="contentchild">
<div class="clique">
<a href="/main" class="link">
<img src="../static/img/main/plus.png" alt="plus">
<h2>Retourner à l'accueil !</h2>
</a>
</div>
</div>
</div>
{% endblock %}