21 lines
732 B
HTML
21 lines
732 B
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n a17t_tags %}
|
|
|
|
{% block head_title %}{% trans "Sign Up" %}{% endblock %}
|
|
{% block page_title %}{% trans "Sign Up" %}{% endblock %}
|
|
|
|
{% block card %}
|
|
<aside class="aside ~info">{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a> instead.{% endblocktrans %}</aside>
|
|
|
|
<form class="signup max-w-lg" id="signup_form" method="post" action="{% url 'account_signup' %}">
|
|
{% csrf_token %}
|
|
{{ form|a17t }}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
|
{% endif %}
|
|
<button type="submit" class="button ~urge @high">{% trans "Sign Up" %}</button>
|
|
</form>
|
|
|
|
{% endblock %}
|