Django framework comes with a reset password out of the box feature. I would like to modify this to where a password is sent to the user via e-mail. I looked at the code in django\contib\auth\views.py I'm not sure how I can modify it.
---- Django Reset Password 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/$', 'django.contrib.auth.views.password_reset_done'), (r'^accounts/password/reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm', {'post_reset_redirect' : '/accounts/password/done/'}), (r'^accounts/password/done/$', 'django.contrib.auth.views.password_reset_complete'), Templates The following five templates are required. These are the templates for the four urls pointed to from the urlpatterns above, plus one template for the email. * registration/password_reset_complete.html * registration/password_reset_confirm.html * registration/password_reset_done.html * registration/password_reset_form.html * registration/password_reset_email.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.