forked from seb_vallee/BillManager
11 lines
477 B
HTML
11 lines
477 B
HTML
{% 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 %}
|