{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% if user and not user.active %}
This account is currently disabled. The user cannot log in.
{% endif %}
{{ form.hidden_tag() }}
{{ form.username.label(class="form-label") }} {{ form.username(class="form-control") }} {% if form.username.errors %}
{% for error in form.username.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.email.label(class="form-label") }} {{ form.email(class="form-control") }} {% if form.email.errors %}
{% for error in form.email.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.password.label(class="form-label") }} {{ form.password(class="form-control", placeholder="Leave blank to keep current" if user else "") }} {% if form.password.errors %}
{% for error in form.password.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.confirm_password.label(class="form-label") }} {{ form.confirm_password(class="form-control") }} {% if form.confirm_password.errors %}
{% for error in form.confirm_password.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.role.label(class="form-label") }} {{ form.role(class="form-select") }}
{% if user and user.id != current_user.id %}
{{ 'Active' if user.active else 'Disabled' }}
{% if user.active %} Disabling this account will immediately prevent the user from logging in. {% else %} Enabling this account will restore the user's ability to log in. {% endif %}
{% endif %}
Cancel
{% endblock %}