{% from "_password_fields.html" import password_fields %}
MiniMost
{% if success %}

Password updated

The password for {{ username }} has been changed.

You can now log in with your new password.

Go to login {% elif error == "invalid" %}

Link invalid or expired

This password reset link has already been used, has expired, or does not exist. Please ask an administrator to generate a new one.

Back to login {% else %}

Set new password

Resetting password for {{ username }}

{% if error %}
{{ error }}
{% endif %}
{{ password_fields("New password", "Confirm new password") }}

{% endif %}
# v{{ app_version }}