Skip to content

Commit

Permalink
Relabel password confirmation field #3711
Browse files Browse the repository at this point in the history
  • Loading branch information
joemull authored and mauromsl committed Jan 25, 2024
1 parent 1e35f86 commit be5ef09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/forms/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Meta:
class PasswordResetForm(forms.Form):

password_1 = forms.CharField(widget=forms.PasswordInput, label=_('Password'))
password_2 = forms.CharField(widget=forms.PasswordInput, label=_('Password (again)'))
password_2 = forms.CharField(widget=forms.PasswordInput, label=_('Confirm Password'))

def clean_password_2(self):
password_1 = self.cleaned_data.get("password_1")
Expand Down

0 comments on commit be5ef09

Please sign in to comment.