{% extends "account/base_entrance.html" %} {% load allauth i18n socialaccount %} {% block head_title %} {% trans "Signup" %} {% endblock head_title %} {% block content %} {% element h1 %} {% trans "Sign Up" %} {% endelement %}

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

{% url 'account_signup' as action_url %} {% element form form=form method="post" action=action_url tags="entrance,signup" %} {% slot body %} {% csrf_token %} {% element fields form=form unlabeled=True %} {% endelement %} {% if redirect_field_value %} {% endif %} {% endslot %} {% slot actions %} {% element button tags="prominent,signup" type="submit" %} {% trans "Sign Up" %} {% endelement %} {% endslot %} {% endelement %} {% include "socialaccount/snippets/login.html" with page_layout="entrance" %} {% endblock content %}