I have some custom registration logic in my project and I want it to work this way:
- Someone requests access using special page (Implemented)
- New
User
is created. (Implemented) - Server sends an email using Django's
send_mail
with a single-use link to a password setup page. (Yet to be implemented)
What's the simplest way to create a single-use link and/or password reset token this using Django's default password reset mechanism?