src/hdalab/templates/registration/password_reset_form.html
author ymh <ymh.work@gmail.com>
Fri, 19 Jul 2024 09:38:03 +0200
changeset 704 b5835dca2624
parent 546 0ca66b267d15
permissions -rw-r--r--
Adapt renkan preview to uses chrome headless/puppeteer

{% extends "base.html" %}
{% load static %}
{% load i18n %}

{% block title %}{% trans "Password reset" %}{% endblock %}

{% block css_import %}
{{block.super}}
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/login.css' %}" />
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/forms.css' %}" />
{% endblock %}

{% block login_actif %}actif{% endblock %}

{% block main_content %}
	<div class="register hdalab-form">
		<h1>{% trans "Recuperation du Mot de Passe" %}</h1>
		{% if form.errors %}
        	<p class="error">{% trans "Sorry, that's not a valid username or password." %}</p>
        {% endif %}
		<form method="post" action="">
	  		{% csrf_token %} 
	  		<p>
	            <label for="email">{% trans "Email du compte:" %}</label>
	            {{form.email}}
	        </p>
	        <div class="btn-submit">
	        	<p><a class="btn-previous" href="{% url 'login' %}">{% trans "Precedent" %}</a><input type="submit" value="{% trans 'Submit' %}" /></p>
		  	</div>
		</form>
	</div>
{% endblock %}