Concept Flow - Password change and reset
User requests password change/reset
System sends email with token link
User clicks link and opens reset form
User enters new password
System validates token and password
Password updated in database
User notified of success
END
This flow shows how Django handles password change and reset by sending a token link, validating it, and updating the password.