This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
montpellier-themes/templates/authentic2/login_password_form.html

19 lines
666 B
HTML

{% load i18n %}
<div>
<form method="post" action="">
{% csrf_token %}
{% include "authentic2/form_fields.html" with form=form %}
<input type="submit" name="{{ submit_name }}" value="{% trans "Log in" %}"/>
</form>
</div>
<div class="login-actions">
{% if can_reset_password %}
<p><a href="{% url 'auth_password_reset' %}">Réinitialiser votre mot de passe</a></p>
{% endif %}
{% if registration_authorized %}
<p><a href="{% url 'registration_register' %}{% if request.GET.next %}?next={{ request.GET.next|urlencode }}{% endif %}">Créer un compte</a></p>
{% endif %}
<p><a href="{{ agglo_url }}nous-contacter/">Contacter le support pour l'aide</a></p>
</div>