{% extends "base.html" %} {% block title %}{% if request.session.is_password_reset %}Password Reset Successfully{% else %}User Created Successfully{% endif %} - AsapLoads POS{% endblock %} {% block header_title %}{% if request.session.is_password_reset %}Password Reset Successfully{% else %}User Created Successfully{% endif %}{% endblock %} {% block content %}
{% if request.session.is_password_reset %}Password Reset{% else %}User Account Created{% endif %}

{% if request.session.is_password_reset %} Password has been reset successfully for {{ user_name }}! {% else %} User account has been created successfully! {% endif %}

Login Credentials

Please securely share these credentials with the user.

{{ user_name }}
{{ user_role }}
{{ user_branch }}
{{ user_email }}
User should change this temporary password after first login.
Instructions for New User
  1. Share the credentials above with the user securely (printed document, encrypted email, etc.)
  2. The user should log in at: {{ request.scheme }}://{{ request.get_host }}/accounts/login/
  3. After first login, the user should change their temporary password from their profile page
  4. If the user forgets their password, an admin can reset it from the user management section
{% if request.session.is_password_reset %} Return to User List {% else %} Add Another User Return to User List {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}