chore: initialize public repository
CI / checks (push) Has been cancelled

This commit is contained in:
maddin
2026-03-22 12:57:09 +00:00
commit 6fbd1bb3c2
142 changed files with 19826 additions and 0 deletions
@@ -0,0 +1,21 @@
{% extends "base.html" %}
{% from "ui/card.html" import card %}
{% from "ui/page_header.html" import page_header %}
{% from "ui/flash.html" import alert %}
{% block title %}E-Mail bestätigen{% endblock %}
{% block content %}
{{ page_header("E-Mail-Bestätigung") }}
{% call card('auth-card') %}
{% if success %}
{{ alert(message, 'success') }}
{% else %}
{{ alert(message, 'error') }}
{% endif %}
<p>
<a href="/verify-email/resend">Neuen Bestätigungslink anfordern</a>
</p>
<p>
<a href="/login">Zur Anmeldung</a>
</p>
{% endcall %}
{% endblock %}