[Answer]-Not Implemented Error During Registration

1👍

It should rather look like this:

def save(self):
    user = super(UserRegisterForm, self).save(commit=False)
    user.set_password(self.cleaned_data['password'])
    user.save()
    return user

As far as I know Django has a built-in view for user registration so there’s no need of writing your own (except from learning).

0👍

I think your import is using the default view instead of the one from a backend that has been implemented.

from registration.backends.hmac.views import RegistrationView

Instead of from registration.views import RegistrationView

Leave a comment