{% extends "polyaxon/modal_index.html" %} {% load static %} {% block content %} {% if form.errors and not form.non_field_errors %}

{% if form.errors.items|length == 1 %} Please correct the error below.{% else %} Please correct the errors below.{% endif %}

{% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}

{{ error }}

{% endfor %} {% endif %}
{% if user.is_authenticated %}

You are authenticated as {{ user.username }}. Would you like to register a different account?

{% endif %}
{% csrf_token %}
{{ form.username.errors }} {{ form.username.label_tag }} {{ form.username }}
{{ form.email.errors }} {{ form.email.label_tag }} {{ form.email }}
{{ form.password1.errors }} {{ form.password1.label_tag }} {{ form.password1 }}
{{ form.password2.errors }} {{ form.password2.label_tag }} {{ form.password2 }}
{{ form.tos.errors }} {{ form.tos.label_tag }} {{ form.tos }}
{% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% endif %}
{% if sso_enabled %}

Or use a social account

{% if sso_github %} {% endif %} {% if sso_gitlab %} {% endif %} {% if sso_bitbucket %} {% endif %} {% if sso_bitbucket %} {% endif %}
{% endif %}
{% endblock %}