{% extends 'core/base.html' %} {% load staticfiles %} {% block breadcrumb %} {% endblock breadcrumb%} {% block content %}
{% if created %} {% endif %}
{% csrf_token %}

Register

Set up your company registration here

{{ form.social_name }} {% if form.social_name.errors %}
    {% for error in form.social_name.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{{ form.name }} {% if form.name.errors %}
    {% for error in form.name.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{{ form.email }} {% if form.email.errors %}
    {% for error in form.email.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{{ form.city }} {% if form.city.errors %}
    {% for error in form.city.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{{ form.found_date }}
{% if form.found_date.errors %}
    {% for error in form.found_date.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{% if login_form.errors %} {% endif %}
{% endblock %}