tried to customize password_reset.html
This commit is contained in:
18
rowers/templates/registration/password_reset.html
Normal file
18
rowers/templates/registration/password_reset.html
Normal 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>
|
||||
Reference in New Issue
Block a user