When I create a registration form that inherits from UserCreationForm
, the text "Your password can't be too similar to your other personal information. Your password must contain at least 8 characters. Your password can't be a commonly used password. Your password can't be entirely numeric." appears under the password input fields and takes up quite a bit of space. Is there a way I can remove this?
I know the username
help text can be removed with:
help_texts = {
'username': None
}
but
help_texts = {
'password1': None,
'password2': None,
}
does not work.