Royal
Royal

Reputation: 752

Django password reset function

I am a newbie and have read through Django docs. How can I perform the standard password reset function?

When a user clicks the "reset password" button, the application should ask for the old password, the new password and a confirmation of the new password. Once this is validated, Django should reset the password.

What is the simplest way to perform this task?

Upvotes: 1

Views: 1017

Answers (1)

karthikr
karthikr

Reputation: 99620

You can use an app like django-password-reset

Or look at this SO post, or this blog

Upvotes: 1

Related Questions