Password field is automatically reffiled when reset
On the authentication password page, if a password has been registered by the browser (at least Firefox), then resetting the field (with Ctrl+Del) triggers a new HTMX request, making the field filled again.
It looks adding this code in the render_input macro is not enough to fix the issue:
{% if request.headers.get("HX-Request") and not request.headers.get("HX-Boosted") %}
{# Prevent password to be automatically refilled when reset during edition #}
{% set ignore_me = kwargs.update({"autocomplete": "off"}) %}
{% endif %}