[Django]-Django – no password set after successful registration

4👍

When calling save on the superclass using super, use the form MyRegistrationForm, not its superclass UserCreationForm.

user = super(MyRegistrationForm, self).save(commit=False)

Leave a comment