This commit is contained in:
jpmvaz
2026-09-13 20:09:20 +01:00
commit 9b5cc30fb4
482 changed files with 57569 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}{{ code }} · Error{% endblock %}
{% block content %}
<div class="auth-shell">
<div class="auth-card" style="text-align: center;">
<div class="auth-prompt">error</div>
<h1 style="font-family: var(--font-mono); font-size: 3rem; color: var(--magenta);">{{ code }}</h1>
<p class="auth-sub">{{ message }}</p>
<a href="{{ url_for('main.index') if not is_backoffice else url_for('backoffice.dashboard') }}" class="btn btn-primary">← Return home</a>
</div>
</div>
{% endblock %}