Login

DualPasswordForm

Author:
weijie90
Posted:
August 12, 2008
Language:
Python
Version:
.96
Score:
1 (after 1 ratings)

DualPasswordForm is a simple form that contains two password fields and validation to ensure that the two passwords match. A minimum password length of 7 characters is imposed, but feel free to change that.

 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. Template tag - list punctuation for a list of items by shapiromatron 2 months ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 1 week ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 9 months, 4 weeks ago
  5. Help text hyperlinks by sa2812 10 months, 3 weeks 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.

#

Please login first before commenting.