Files
stundenfuchs/app/templates/pages/email_verification_resend.html
T
maddin 9794362f39
CI / checks (push) Has been cancelled
chore: initialize public repository
2026-03-22 12:55:55 +00:00

20 lines
758 B
HTML

{% extends "base.html" %}
{% from "ui/card.html" import card %}
{% from "ui/button.html" import button %}
{% from "ui/form_field.html" import input_field %}
{% from "ui/page_header.html" import page_header %}
{% block title %}E-Mail bestätigen{% endblock %}
{% block content %}
{{ page_header("Bestätigungslink anfordern") }}
{% call card('auth-card') %}
<form action="/verify-email/resend" method="post" class="stack">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}" />
{{ input_field('E-Mail-Adresse', 'email', type='email', required=true, autocomplete='username') }}
{{ button('Link senden', type='submit') }}
</form>
<p>
<a href="/login">Zur Anmeldung</a>
</p>
{% endcall %}
{% endblock %}