{% 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') %}
{{ input_field('E-Mail-Adresse', 'email', type='email', required=true, autocomplete='username') }} {{ button('Link senden', type='submit') }}

Zur Anmeldung

{% endcall %} {% endblock %}