email = forms.EmailField()
username = forms.CharField()
password = forms.CharField(widget=forms.PasswordInput)
- confirmpassword = forms.CharField(widget=forms.PasswordInput)
+ confirmpassword = forms.CharField(label=("Confirm password"), widget=forms.PasswordInput)
- def clean_mpassword(self):
+ def clean_confirmpassword(self):
password = self.cleaned_data.get("password", "")
cpassword = self.cleaned_data["confirmpassword"]
if password != cpassword:
- raise forms.ValidationError(_("The two password fields didn't match."))
- return cpassword
+ raise forms.ValidationError(("The two password fields didn't match."))
+ return cpassword