37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n crispy_forms_tags inventree_extras %}
|
|
|
|
{% block head_title %}{% trans "Signup" %}{% endblock head_title %}
|
|
|
|
{% block content %}
|
|
<h3>{% trans "Sign Up" %}</h3>
|
|
|
|
<p>
|
|
{% 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 %}
|
|
<br>
|
|
{% trans "As a final step, please complete the following form" %}:
|
|
</p>
|
|
|
|
<form class="signup" id="signup_form" method="post" action="{% url 'socialaccount_signup' %}">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
|
{% endif %}
|
|
<button class='btn btn-success sso-provider-link' type="submit">
|
|
<span class='fas fa-user-plus'></span> {% trans "Sign Up" %} »
|
|
</button>
|
|
</form>
|
|
|
|
<hr>
|
|
<div>
|
|
<a href='{% url "account_login" %}'>
|
|
{% trans "Return to login page" %}
|
|
</a>
|
|
</div>
|
|
|
|
{% endblock content %}
|