{% extends "base.html" %} {% block content %}
{% with staff_nav_active="users" %} {% include "partials/staff_sidebar.html" %} {% endwith %}
{% set breadcrumbs = [ {"name": "Staff", "href": "/staff"}, {"name": "Users", "href": "/staff/users"}, {"name": user.name | display_name(user.username), "href": "/staff/users/" ~ user.uuid}, {"name": "Security", "href": "/staff/users/" ~ user.uuid ~ "/tokens"}, {"name": "Change password"} ] %} {% include "partials/breadcrumbs.html" %}

{{ user.name | display_name(user.username) }}

{% with staff_user_tabs_base="/staff/users/" ~ user.uuid, staff_user_tabs_active="security" %} {% include "partials/staff_user_tabs.html" %} {% endwith %} {% include "partials/flash.html" %}

Change password

Choose a strong password you do not reuse elsewhere.
Re-enter the new password to confirm it.
{% with primary_label="Save changes", cancel_href_prefix="/staff/users/", cancel_href_value=user.uuid, cancel_href_suffix="/tokens" %} {% include "partials/form_actions.html" %} {% endwith %}
{% endblock %}