2021-09-02 20:11:35 +00:00
|
|
|
{% extends "account/base.html" %}
|
|
|
|
|
2021-09-05 18:17:49 +00:00
|
|
|
{% load i18n crispy_forms_tags inventree_extras %}
|
2021-09-02 20:11:35 +00:00
|
|
|
|
|
|
|
{% block head_title %}{% trans "Signup" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-09-05 18:17:49 +00:00
|
|
|
{% settings_value 'LOGIN_ENABLE_REG' as enable_reg %}
|
2021-09-05 18:20:57 +00:00
|
|
|
{% settings_value 'LOGIN_ENABLE_SSO' as enable_sso %}
|
2021-09-05 18:17:49 +00:00
|
|
|
|
2021-09-02 20:11:35 +00:00
|
|
|
<h1>{% trans "Sign Up" %}</h1>
|
|
|
|
|
|
|
|
<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</p>
|
|
|
|
|
2021-09-05 18:17:49 +00:00
|
|
|
{% if enable_reg %}
|
2021-09-02 20:11:35 +00:00
|
|
|
<form class="signup" id="signup_form" method="post" action="{% url 'account_signup' %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
{% if redirect_field_value %}
|
|
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
|
|
|
{% endif %}
|
|
|
|
<button type="submit" class="btn btn-primary btn-block">{% trans "Sign Up" %}</button>
|
|
|
|
</form>
|
|
|
|
|
2021-09-05 18:20:57 +00:00
|
|
|
{% if enable_sso %}
|
2021-09-02 20:12:18 +00:00
|
|
|
<br>
|
|
|
|
<h4>{% trans 'Or use a SSO-provider for signup' %}</h4>
|
|
|
|
<div>
|
|
|
|
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
|
|
|
|
</div>
|
|
|
|
{% include "socialaccount/snippets/login_extra.html" %}
|
2021-09-05 18:20:57 +00:00
|
|
|
{% endif %}
|
2021-09-02 20:12:18 +00:00
|
|
|
|
2021-09-05 18:17:49 +00:00
|
|
|
{% else %}
|
|
|
|
<div class='alert alert-block alert-danger'>
|
|
|
|
<p>{% trans "This function is currently disabled. Please contact an administrator." %}</p>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2021-09-02 20:11:35 +00:00
|
|
|
{% endblock %}
|