-
-
Notifications
You must be signed in to change notification settings - Fork 673
Expand file tree
/
Copy pathpassword_reset.html
More file actions
20 lines (15 loc) · 767 Bytes
/
password_reset.html
File metadata and controls
20 lines (15 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "account/base.html" %}
{% load i18n account %}
{% block page_title %}{% trans "Password Reset" %}{% endblock page_title %}
{% block content %}
<h1>{% trans "Password Reset" %}</h1>
<p>{% trans "Forgotten your password? Enter your email address below and we'll send you an email allowing you to reset it." %}</p>
<form method="post" action="{% url 'account_reset_password' %}" class="password_reset">
{% csrf_token %}
{{ form.as_p }}
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
{% endif %}
<button class="primaryAction" type="submit">{% trans "Reset My Password" %}</button>
</form>
{% endblock content %}