13 lines
537 B
HTML
13 lines
537 B
HTML
{% 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 %}
|