I am using the default Django password reset system, which has the following workflow:
- User clicks 'reset password' link
- User enters email on a page
- User is sent password reset link to address entered in previous step
I would like this to be:
- User clicks 'reset password' link
- User is sent password reset link to email used to create user account
I already have the former set up, but I can't find a way to change the password reset function to pull the user email from the user model and use that instead of an email that the user enters. Any ideas?