DualPasswordForm

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
class DualPasswordForm(forms.Form):
    password = forms.CharField(widget=forms.PasswordInput, min_length=7)
    password_again = forms.CharField(widget=forms.PasswordInput, min_length=7)

    def clean_password(self): 
        password = self.clean_data.get("password")
        password_again = self.clean_data.get("password_again")
        if password != password_again: 
            raise forms.ValidationError("The two password fields should match.") 
        return password

More like this

  1. Password Validation - Require Letters and Numbers - no regex by watchedman 1 year, 8 months ago
  2. use oldforms validators in newforms forms by garywilson 6 years, 1 month ago
  3. SAS70 Compliant Password Validator by czieler 5 years, 9 months ago
  4. No Password E-mail by jefferya 4 years, 3 months ago
  5. Formalchemy hack for newforms-based form validation by erob 4 years, 4 months ago

Comments

adamlofts (on August 12, 2008):

Have you seen django.contrib.auth.forms?

#

msaelices (on August 12, 2008):

It should be self.cleaned_data and not self.clean_data

#

weijie90 (on August 13, 2008):

It should be self.cleaned_data and not self.clean_data

I'm using 0.96. cleaned_data doesn't work.

#

(Forgotten your password?)