Some more redirects. Editing user settings does not work. Overhauled adding a new...
[~kgodey/maayanwich.git] / forms.py
index e471c2a..e79669c 100644 (file)
--- a/forms.py
+++ b/forms.py
@@ -25,4 +25,11 @@ class NewUserForm(forms.Form):
        email = forms.EmailField()
        username = forms.CharField()
        password = forms.CharField(widget=forms.PasswordInput)
-       confirm_password = forms.CharField(widget=forms.PasswordInput)
+       confirmpassword = forms.CharField(widget=forms.PasswordInput)
+
+       def clean_mpassword(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