diff --git a/kobo/apps/accounts/forms.py b/kobo/apps/accounts/forms.py index b9e9727a37..eca43e9cca 100644 --- a/kobo/apps/accounts/forms.py +++ b/kobo/apps/accounts/forms.py @@ -139,6 +139,10 @@ def __init__(self, *args, **kwargs): for field_name in ['username', 'email', 'password1', 'password2']: if field_name in self.fields: self.fields[field_name].widget.attrs['placeholder'] = '' + if 'password1' in self.fields: + # Remove `help_text` on purpose since some guidance is provided by + # Constance setting. Moreover it is redundant with error messages. + self.fields['password1'].help_text = '' if 'password2' in self.fields: self.fields['password2'].label = t('Password confirmation') if 'email' in self.fields: