{% extends 'base.html' %} {% load static %} {% block title %}Sign Up - AIBOTXCHANGE{% endblock %} {% block content %}

Create your account

Join thousands of successful traders

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.country }} {% if form.country.errors %}
{{ form.country.errors }}
{% endif %}
{{ form.password1 }} {% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
{{ form.password2 }} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}
Already have an account?

Risk Warning

Trading involves substantial risk and may not be suitable for all investors. Past performance does not guarantee future results.

{% endblock %}