mirror of
https://github.com/django/django.git
synced 2025-12-02 16:16:01 +00:00
Fixed #28706 -- Moved AuthenticationFormn invalid login ValidationError to a method for reuse.
This commit is contained in:
parent
7fb913c805
commit
6ed347d851
2 changed files with 19 additions and 5 deletions
|
|
@ -192,11 +192,7 @@ class AuthenticationForm(forms.Form):
|
|||
if username is not None and password:
|
||||
self.user_cache = authenticate(self.request, username=username, password=password)
|
||||
if self.user_cache is None:
|
||||
raise forms.ValidationError(
|
||||
self.error_messages['invalid_login'],
|
||||
code='invalid_login',
|
||||
params={'username': self.username_field.verbose_name},
|
||||
)
|
||||
raise self.get_invalid_login_error()
|
||||
else:
|
||||
self.confirm_login_allowed(self.user_cache)
|
||||
|
||||
|
|
@ -227,6 +223,13 @@ class AuthenticationForm(forms.Form):
|
|||
def get_user(self):
|
||||
return self.user_cache
|
||||
|
||||
def get_invalid_login_error(self):
|
||||
return forms.ValidationError(
|
||||
self.error_messages['invalid_login'],
|
||||
code='invalid_login',
|
||||
params={'username': self.username_field.verbose_name},
|
||||
)
|
||||
|
||||
|
||||
class PasswordResetForm(forms.Form):
|
||||
email = forms.EmailField(label=_("Email"), max_length=254)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue