{# Admin login form. Single email input, no JS. If the submitted address is on the allowlist (ADMIN_EMAILS env var), the POST handler emails a one-time magic link; otherwise it silently succeeds without sending (anti-enumeration). Context: - error : str | None (format validation errors only) - email : str (pre-fill on re-render after format error) #} {% extends "admin/base.html" %} {% block title %}Log in — Admin{% endblock %} {% block content %}

Admin log in

Enter your admin email and we'll send a one-time login link that expires after 15 minutes.

{% if error %} {% endif %}
{% endblock %}