Django Reset Password
April 9, 2010
The Django framework comes with support for resetting user passwords. This is implemented for the Admin app, but it is possible to re-use from your own screens.
URLs
The following four URLs are used in the password reset
(r'^accounts/password/reset/$', 'django.contrib.auth.views.password_reset', {'post_reset_redirect' : '/accounts/password/reset/done/'}), (r'^accounts/password/reset/done/$' …