{% extends "base.html" %} {% load static %} {% block title %}Investor Registration - IHICL Investment{% endblock %} {% block content %}

Investor Registration

Create Your Investor Account

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.errors %} {% endif %}
{% csrf_token %}
{% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{% if form.country.errors %}
{{ form.country.errors.0 }}
{% endif %}
+
{% if form.telephone.errors %}
{{ form.telephone.errors.0 }}
{% endif %}
{% if form.address.errors %}
{{ form.address.errors.0 }}
{% endif %}
{% if form.city.errors %}
{{ form.city.errors.0 }}
{% endif %}
{% if form.state.errors %}
{{ form.state.errors.0 }}
{% endif %}
{% if form.postal_code.errors %}
{{ form.postal_code.errors.0 }}
{% endif %}
{% if form.investment_amount.errors %}
{{ form.investment_amount.errors.0 }}
{% endif %}
Must be at least 8 characters with a number and symbol
{% if form.password1.errors %}
{{ form.password1.errors.0 }}
{% endif %}
{% if form.password2.errors %}
{{ form.password2.errors.0 }}
{% endif %}
{% if form.terms.errors %}
{{ form.terms.errors.0 }}
{% endif %}
{{ form.captcha }} {% if form.captcha.errors %}
{% for error in form.captcha.errors %} {{ error }} {% endfor %}
{% endif %}

Already have an account? Sign in

{% endblock %}