initial version

This commit is contained in:
2026-06-28 14:24:41 +01:00
commit a5fa596244
388 changed files with 71390 additions and 0 deletions
@@ -0,0 +1,29 @@
{% extends "account/base_entrance.html" %}
{% load allauth %}
{% load i18n %}
{% block head_title %}
{% trans "Confirm Access" %}
{% endblock head_title %}
{% block content %}
{% element h1 %}
{% trans "Confirm Access" %}
{% endelement %}
{% element p %}
{% blocktranslate %}Please reauthenticate to safeguard your account.{% endblocktranslate %}
{% endelement %}
{% block reauthenticate_content %}{% endblock %}
{% if reauthentication_alternatives %}
{% element hr %}
{% endelement %}
{% element h2 %}
{% translate "Alternative options" %}
{% endelement %}
{% element button_group %}
{% for alt in reauthentication_alternatives %}
{% element button href=alt.url tags="primary,outline" %}
{{ alt.description }}
{% endelement %}
{% endfor %}
{% endelement %}
{% endif %}
{% endblock content %}