{% extends 'users/user_base.html' %} {% load static %} {% block user_content %}

Data Studio

{% csrf_token %}
{% if user_form.errors.email %}
    {% for error in user_form.errors.email %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% if user_form.errors.first_name %}
    {% for error in user_form.errors.first_name %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% if user_form.errors.last_name %}
    {% for error in user_form.errors.last_name %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% if user_form.errors.password %}
    {% for error in user_form.errors.password %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% if user_form.errors.re_password %}
    {% for error in user_form.errors.re_password %}
  • {{ error }}
  • {% endfor %}
{% endif %}

By proceeding, you agree to the Terms and Conditions and Privacy Policy.

{% if not settings.DISABLE_SIGNUP_WITHOUT_LINK %}

Already have an account? Login.

{% endif %}
{% endblock %}