{% extends "business/auth/auth_base.html" %} {% block title %}Register - Inventory Management System{% endblock %} {% block auth_title %}Create Your Account{% endblock %} {% block auth_subtitle %}Start managing your inventory efficiently{% endblock %} {% block auth_content %}
{% csrf_token %}
Account Information
{% if user_form.username.errors %}
{{ user_form.username.errors.0 }}
{% else %}
3-150 characters. Letters, digits and @/./+/-/_ only.
{% endif %}
{% if user_form.email.errors %}
{{ user_form.email.errors.0 }}
{% endif %}
{% if user_form.first_name.errors %}
{{ user_form.first_name.errors.0 }}
{% endif %}
{% if user_form.last_name.errors %}
{{ user_form.last_name.errors.0 }}
{% endif %}
{% if user_form.password1.errors %}
{{ user_form.password1.errors.0 }}
{% else %}
  • At least 8 characters
  • Not too common
  • Not entirely numeric
{% endif %}
{% if user_form.password2.errors %}
{{ user_form.password2.errors.0 }}
{% endif %}

Business Information
{% if business_form.name.errors %}
{{ business_form.name.errors.0 }}
{% endif %}
{% if business_form.business_type.errors %}
{{ business_form.business_type.errors.0 }}
{% endif %}
{% if business_form.email.errors %}
{{ business_form.email.errors.0 }}
{% endif %}
{% if business_form.phone.errors %}
{{ business_form.phone.errors.0 }}
{% endif %}
{% if business_form.address.errors %}
{{ business_form.address.errors.0 }}
{% endif %}
You must agree to the terms and conditions.

Want to try first?

Try Demo Account
{% endblock %} {% block auth_footer %}

Already have an account? Sign in here

{% endblock %} {% block extra_js %} {% endblock %}