mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-22 17:36:32 +03:00
23 lines
707 B
HTML
23 lines
707 B
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block head_title %}{% translate "Signup" %}{% endblock %}
|
|
|
|
{% block inner %}
|
|
<h1>{% translate "Sign Up" %}</h1>
|
|
|
|
<p>{% blocktranslate %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktranslate %}</p>
|
|
|
|
<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 class="btn btn-primary" type="submit">{% translate "Sign Up" %} »</button>
|
|
</form>
|
|
|
|
{% endblock %}
|