class UserForm(UserCreationForm): def __init__(self, *arg, **kw): super(UserForm, self).__init__(*arg, **kw) # re-
You can create your own password form field and handle it manually. Or you can override clean method and remove password related errors yourself.