{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
{% if customer %}
Account Status: {{ 'Active' if customer.active else 'Disabled' }}
{% if customer.active %} Disabling prevents the customer from logging in immediately. {% else %} This account is currently disabled — the customer cannot log in. {% endif %}
{% endif %}

{{ title }}

{{ form.hidden_tag() }}
{{ form.username.label(class="form-label") }} {{ form.username(class="form-control") }} {% if form.username.errors %}
{% for e in form.username.errors %}{{ e }}{% endfor %}
{% endif %}
{{ form.email.label(class="form-label") }} {{ form.email(class="form-control") }} {% if form.email.errors %}
{% for e in form.email.errors %}{{ e }}{% endfor %}
{% endif %}
{{ form.password.label(class="form-label") }} {{ form.password(class="form-control", placeholder="Leave blank to keep current" if customer else "Min. 8 characters") }} {% if form.password.errors %}
{% for e in form.password.errors %}{{ e }}{% endfor %}
{% endif %}
{{ form.confirm_password.label(class="form-label") }} {{ form.confirm_password(class="form-control") }} {% if form.confirm_password.errors %}
{% for e in form.confirm_password.errors %}{{ e }}{% endfor %}
{% endif %}
{% if customer %} Cancel {% else %} Cancel {% endif %}
{% endblock %}