{% load static %} {% load i18n %} Employee Onboarding - {{white_label_company_name}} Dashboard {% if form.errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
Acme, Inc.
  • 1
    {% trans "Login" %}
  • 2
    {% trans "Profile Setup" %}
  • 3
    {% trans "Personal Details" %}
  • 4
    {% trans "Bank Details" %}
{% csrf_token %}

{% trans "Bank Details" %}

{{form.bank_name}} {{form.bank_name.errors}}
{{form.account_number}} {{form.account_number.errors}}
{{form.branch}} {{form.branch.errors}}
{{form.address}} {{form.address.errors}}
{{form.country.errors}}
{{form.state.errors}}
{{form.city}} {{form.city.errors}}
{{form.any_other_code1}} {{form.any_other_code1.errors}}
{{form.any_other_code2}} {{form.any_other_code2.errors}}