{% extends "account/base.html" %} {% load i18n crispy_forms_tags inventree_extras %} {% block head_title %}{% trans "Signup" %}{% endblock head_title %} {% block content %} {% settings_value 'LOGIN_ENABLE_REG' as enable_reg %} {% settings_value 'LOGIN_ENABLE_SSO_REG' as enable_sso %}

{% trans "Sign Up" %}

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

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

{% trans 'Use a SSO-provider for signup' %}

{% include "socialaccount/snippets/provider_list.html" with process="login" %}
{% include "socialaccount/snippets/login_extra.html" %} {% endif %} {% if not enable_reg and not enable_sso %}

{% trans "This function is currently disabled. Please contact an administrator." %}

{% endif %} {% endblock content %}