mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #8042 -- Modified the password reset form so that the email field length matches the User model. Thanks to Bob Thomas <bthomas@ncircle.com> for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8159 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -87,7 +87,7 @@ class AuthenticationForm(forms.Form): | |||||||
|         return self.user_cache |         return self.user_cache | ||||||
|  |  | ||||||
| class PasswordResetForm(forms.Form): | class PasswordResetForm(forms.Form): | ||||||
|     email = forms.EmailField(label=_("E-mail"), max_length=40) |     email = forms.EmailField(label=_("E-mail"), max_length=75) | ||||||
|      |      | ||||||
|     def clean_email(self): |     def clean_email(self): | ||||||
|         """ |         """ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user