{% 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 login to a different account?

{% endif %}
{% csrf_token %}
{{ form.username.errors }} {{ form.username.label_tag }} {{ form.username }}
{{ form.password.errors }} {{ form.password.label_tag }} {{ form.password }}
{% if password_reset_url %} {% endif %}
No account yet? You can register here.
{% if sso_enabled %}

Or use a social account

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