mirror of
https://github.com/inventree/InvenTree.git
synced 2026-04-29 14:24:25 +00:00
10c3d101e8
* remove markuplint * remove dedicated html step - will be done by pre-commit * add djlint for django template linting * Fix T003: Endblock should have name * Fix H013: Img tag should have an alt attribute * Fix H014: Found extra blank lines * Fix T003: Endblock should have name * Fix H013: Img tag should have an alt attribute * small fixes * Fix T001: Variables should be wrapped in a single whitespace * Fix T003: Endblock should have name * small fixes * fix form method * add entry to contributing * fix template changes * another fix * use current version
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
{% extends "socialaccount/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}}.<br>As a final step, please complete the following form:{% endblocktrans %}</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 %}
|