Files
Notfellchen/src/fellchensammlung/templates/allauth/elements/form.html
2025-10-21 01:47:17 +02:00

12 lines
344 B
HTML

{% load allauth %}
<div class="block">
<form method="{{ attrs.method }}"
{% if attrs.action %}action="{{ attrs.action }}"{% endif %}>
{% slot body %}
{% endslot %}
<div class="field is-grouped is-grouped-multiline">
{% slot actions %}
{% endslot %}
</div>
</form>
</div>