Init project

This commit is contained in:
seb
2026-02-21 23:26:50 +01:00
parent df61e93871
commit b7046b125c
29 changed files with 2553 additions and 0 deletions

10
templates/erreur.html Normal file
View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block title %}Erreur {{ status_code }}{% endblock %}
{% block content %}
<div class="form-card" style="text-align:center; padding: 3rem;">
<p style="font-size: 3rem;">⚠️</p>
<h1 style="margin: 1rem 0 0.5rem;">Erreur {{ status_code }}</h1>
<p style="color: var(--muted);">{{ detail or "Une erreur est survenue." }}</p>
<a href="/" class="btn btn-primary" style="margin-top: 1.5rem;">Retour à l'accueil</a>
</div>
{% endblock %}