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

{% trans "Sign Up" %}

{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to {{site_name}}. {% endblocktrans %}

If you are signing up for the first time and seeing this page, please enter the following information:
{% csrf_token %} {{ form | crispy }} {% if redirect_field_value %} {% endif %}
{% endblock %}