{% load allauth %} {% comment %} `id` is not decorative: allauth renders out-of-band forms (webauthn, logout-from-stage) and points buttons at them with the HTML `form` attribute. Drop the id and those buttons submit nothing. The action bar is drawn when the actions slot has something in it — NOT keyed on `no_visible_fields`, which means the form has no visible *fields* (logout is a bare csrf token, and so is TOTP deactivate) and says nothing about its buttons. Keying the bar on it hides the Sign Out button on the very page whose only purpose is that button. {% endcomment %}
{% slot body %}{% endslot %} {% if slots.actions %}
{% slot actions %}{% endslot %}
{% endif %}