poli_planning/polyclinic_scheduling/apps/RUG_template/templates/registration/password_reset_form.html

25 lines
523 B
HTML
Raw Normal View History

2020-05-13 15:54:40 +02:00
{% extends 'base.html' %} <!-- Add this for inheritance -->
{% load i18n %}
{% block title %}{% trans "Reset password" %}{% endblock %}
{% block pagetitle %}{% trans "Reset password" %}{% endblock %}
{% block content %}
<p>
<strong>{% trans "Reset password" %}</strong>
</p>
<form method="post" action="{% url 'password_reset' %}">
{% csrf_token %}
<table>
<tr>
<td>{{ form.email.label_tag }}</td>
<td>{{ form.email }}</td>
</tr>
</table>
<input type="submit" value="Reset my password">
</form>
{% endblock %}