{% extends 'base.html' %}{% block heading %}User Administration{% endblock %}{% block content %}
ADD USER

New users must change their temporary password after first login.

SECURITY MODEL

Passwords are stored as salted hashes. Admins can create users, reset passwords and deactivate accounts. The initial administrator is securely bootstrapped from server-side environment credentials. Passwords are never stored in plaintext.

{% for u in users %}{% endfor %}
UserRoleStatusPasswordActions
{{u.username}}{{u.role}}{{'Active' if u.active else 'Removed'}}{{'Must change' if u.must_change_password else 'Set'}}
{% if u.active %}
{% endif %}
{% endblock %}