Private
Public Access
1
0

tried to customize password_reset.html

This commit is contained in:
Sander Roosendaal
2018-06-14 10:33:18 +02:00
parent 3bbc014c42
commit c1cb399ed0
2 changed files with 20 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
{% 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>