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

22 lines
686 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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" %}"/>
{% if cancel %}
<input type="submit" name="cancel" value="{% trans 'Cancel' %}"/>
{% endif %}
</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' %}">Créer un compte</a></p>
{% endif %}
<p><a href="{{ wcs_url }}/nous-contacter/">Contacter le support pour l'aide</a></p>
</div>