16 lines
492 B
HTML
16 lines
492 B
HTML
{% extends "fellchensammlung/base_generic.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{% if form.email.errors %}
|
|
{{ form.email.errors }}
|
|
{% endif %}
|
|
<h1> {% translate "Password reset" %} </h1>
|
|
<p>{% translate "Provide the e-mail address that is connected with your account" %}</p>
|
|
<p>{{ form.email }}</p>
|
|
<input type="submit" class="btn btn-default btn-lg" value={% translate "Reset" %}>
|
|
</form>
|
|
{% endblock %}
|