{% 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 %}