diff --git a/apps/users/forms.py b/apps/users/forms.py index 091ea01ff..95009e366 100644 --- a/apps/users/forms.py +++ b/apps/users/forms.py @@ -53,7 +53,7 @@ class UserProfileForm(forms.ModelForm): class UserPasswordForm(forms.Form): old_password = forms.CharField( - min_length=5, max_length=128, widget=forms.PasswordInput) + max_length=128, widget=forms.PasswordInput) new_password = forms.CharField( min_length=5, max_length=128, widget=forms.PasswordInput) confirm_password = forms.CharField(