{# This snippet shows a form to edit a hashed password for users and participations. #}
{% if hashed_password is not none %}
{% set method, password = parse_authentication(hashed_password) %}
{% else %}
{% set method = "plaintext" %}
{% set password = "" %}
{% endif %}
{% if method != "plaintext" %}
{% endif %}