docbow/docbow_project/docbow/templates/registration/password_reset_form.html

21 lines
536 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}
{% trans "Resetting password" %}
{% endblock %}
{% block content %}
<div id="resetpw-box">
<form method="post" action=".">
<p>{% trans "Enter your email to get your password reset." %}</p>
{% csrf_token %}
{{ form.as_p }}
<br class="clear"/>
<input id="resetpw" type="submit" value="{% trans 'Submit' %}" />
<p><a href="{% url "auth_login" %}">{% trans "Back to the login page" %}<a/></p>
</form>
</div>
{% endblock %}