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

Create Customer Account

Enter the customer's name and email address. An invitation email will be sent automatically with a secure link to set their password. The account will be activated once they complete that step.

{{ form.hidden_tag() }}
{{ form.full_name.label(class="form-label fw-semibold") }} {{ form.full_name(class="form-control" + (" is-invalid" if form.full_name.errors else ""), placeholder="e.g. Jane Smith", autofocus=true) }} {% for error in form.full_name.errors %}
{{ error }}
{% endfor %}
{{ form.email.label(class="form-label fw-semibold") }} {{ form.email(class="form-control" + (" is-invalid" if form.email.errors else ""), placeholder="jane@example.com") }} {% for error in form.email.errors %}
{{ error }}
{% endfor %}
An invitation email with a password setup link will be sent to this address.
Cancel

What happens next:

  1. A username is automatically generated from the email address.
  2. An invitation email is sent to the customer with a secure 72-hour link.
  3. The customer clicks the link and sets their own password.
  4. The account becomes fully active and they can log in immediately.
{% endblock %}