You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
256 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. from django import forms
  2. class LowercaseEmailField(forms.EmailField):
  3. def clean(self, value):
  4. value = super(LowercaseEmailField, self).clean(value)
  5. return value.lower()
  6. class EmailForm(forms.Form):
  7. email = LowercaseEmailField()