I am using social login in my Django app. So, I have added additional backends in my settings.py file.
settings.py
AUTHENTICATION_BACKENDS = [ \'django.
i believe its because you havnt hashed the password. this worked for me. try:
user = userform.save() user.set_password(user.password) user.save()