Forgotten Password In Django

Turns out that there are plenty of useful features in the Django admin that I never thought about. The other day I found the last task of a project of mine was adding the "Forgotten password" feature. It's basically a standard task included in every users-related project, but the whole process requires few interactions: clicking 'forgotten password' link writing user email where the password should be send to verifying email against users database sending confirmation link confirming link choosing password resetting password The whole 7-steps list (with UI and backend communications) could be boring and time wasting (usually). That's where… Continue Reading