Send Password On User Registration, Django-allauth
I am using django-alluth for authentication/registration on my django app. And I need to create a custom signup form with only one field: email. The password will be generated on t
Solution 1:
If you don't want to do it in the signup method, don't do the signup inside the form, but in the view instead.
The only moment you have access to the password is right when you create it and give it to a user, so that's when you need to send it to said user.
Post a Comment for "Send Password On User Registration, Django-allauth"