{% extends 'base.html' %} {% load static %} {% load static_v %} {% block title %}{{ t.title_signup }} — PickkerMarket{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% csrf_token %}

{{ t.signup_title }}

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% for radio in form.role %} {% endfor %}

{{ t.signup_account_details_heading }}

{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.first_name }}
{{ form.last_name }}
{{ form.phone_number }} {{ form.preferred_language }}

{{ t.signup_password_heading }}

{{ form.password1 }} {{ form.password2 }} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}

{{ t.signup_address_heading }}

{{ form.account_type }} {{ form.business_name }} {{ form.address }}
{{ form.city }}
{{ form.area }}

{{ t.signup_vehicle_market_heading }}

{{ form.vehicle_type }} {% if form.vehicle_type.errors %}
{{ form.vehicle_type.errors }}
{% endif %} {{ form.license_plate }}

{{ t.signup_market_location_help }}

{% if form.market_location.errors %}
{{ form.market_location.errors }}
{% endif %}
{{ form.market_location }} {{ form.location_lat }} {{ form.location_lng }} {{ form.license_number }}
{{ form.agree_to_policies }}
{% if form.agree_to_policies.errors %}
{{ form.agree_to_policies.errors }}
{% endif %}

{{ t.signup_has_account }} {{ t.signup_login_link }}

{% endblock %} {% block extra_scripts %} {% endblock %}