I have set the following entry in the urls.py
(r\'^password_reset/$\', \'django.contrib.auth.views.password_reset\'),
but once I go to
Django needs to know which URL to redirect the user to once they have completed the form on the password_reset page. So add another line to your URL configuration:
(r'^password_reset_done/$', 'django.contrib.auth.views.password_reset_done'),