How to set password for user signup with social accounts in django

i am using django-allauth. I want that when users signup with social accounts, redirect to set the password page. I do not know what to do. Any suggestion.

if you want to reset/update the password you can use user.set_password(password)

Back to Top