{% extends "account/base.html" %} {% load i18n crispy_forms_tags %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}

{% csrf_token %} {{ form|crispy }} {% if redirect_field_value %} {% endif %}

{% trans 'Or use a SSO-provider for signup' %}

{% include "socialaccount/snippets/provider_list.html" with process="login" %}
{% include "socialaccount/snippets/login_extra.html" %} {% endblock %}