User Management

Please review Account Management before adding users.

Use the manage.py command to create new Accounts:

python manage.py create_user \
  --account-number "####-####-####" \
  --username "newuser" \
  --email "newuser@example.com" \
  --first_name "New" \
  --last_name "User" \
  --password "securepassword" \
  --admin

If you have enabled SMTP Email Services, a welcom email will be sent to the new user with further instructions.