{% extends "registration/login.html" %} {% load i18n %} {% block sub_title %}{% trans "Signup" %} - {% endblock %} {% block extra_style %}{{block.super}} {% endblock %} {% block main_content %}

{% trans "Signup" %}

{% if request.user.is_authenticated %}

{% trans "Welcome back, you are already signed in." %}

{% else %}
{% csrf_token %} {{ form.org_name.errors }} {% if not org_auto_url_prefix %}
{{ service_url_scheme }}:// .{{ service_url_remaining }}
{% endif %} {{ form.url_prefix.errors }} {% if form.name.field.required %} {{ form.name.errors }} {% endif %} {{ form.email.errors }}
{{ form.non_field_errors }}

{% endif %}
{% include "snippets/policy_service_link.html" %} {% endblock %} {% block extra_script %}{{block.super}} {% endblock %}