photo26/photo21/templates/account/signup.html
2022-03-11 17:16:11 +01:00

28 lines
1 KiB
HTML

{% extends "account/base.html" %}
{% comment %}
This file is part of photo21
Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n crispy_forms_tags %}
{% block head_title %}{% trans "Signup" %}{% endblock %}
{% block content %}
<div class="card">
<h3 class="card-header text-center">
{% trans "Sign Up" %}
</h3>
<div class="card-body">
<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</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 type="submit" class="btn btn-primary mt-2">{% trans "Sign Up" %} &raquo;</button>
</form>
</div>
</div>
{% endblock %}