Private
Public Access
1
0
Files
rowsandall/rowers/templates/registration/password_reset.html
2018-06-14 10:33:18 +02:00

19 lines
441 B
HTML

{% load i18n %}
<!DOCTYPE html>
<html>
<head>
<title>Forgot your password?</title>
</head>
<body>
<h1>Forgot your password?</h1>
<form method="post">{% csrf_token %}
<div>
{{ form.email.errors }}
<label for="id_email">{% trans 'Email address:' %}</label>
{{ form.email }}
</div>
<input type="submit" value="{% trans 'Reset my password' %}" />
</form>
</body>
</html>