diff --git a/django/contrib/admin/forms.py b/django/contrib/admin/forms.py
index f1e7076..f0fa408 100644
a
|
b
|
from django.contrib.auth import authenticate
|
6 | 6 | from django.contrib.auth.forms import AuthenticationForm |
7 | 7 | from django.utils.translation import ugettext_lazy |
8 | 8 | |
9 | | ERROR_MESSAGE = ugettext_lazy("Please enter the correct username and password " |
10 | | "for a staff account. Note that both fields are case-sensitive.") |
| 9 | ERROR_MESSAGE = ugettext_lazy("Please enter correct credentials for a staff " |
| 10 | "account. Note that both fields are case-sensitive.") |
11 | 11 | |
12 | 12 | |
13 | 13 | class AdminAuthenticationForm(AuthenticationForm): |
diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py
index b44bc8b..7ef73c3 100644
a
|
b
|
class AuthenticationForm(forms.Form):
|
148 | 148 | password = forms.CharField(label=_("Password"), widget=forms.PasswordInput) |
149 | 149 | |
150 | 150 | error_messages = { |
151 | | 'invalid_login': _("Please enter a correct username and password. " |
| 151 | 'invalid_login': _("Please enter correct credentials. " |
152 | 152 | "Note that both fields are case-sensitive."), |
153 | 153 | 'no_cookies': _("Your Web browser doesn't appear to have cookies " |
154 | 154 | "enabled. Cookies are required for logging in."), |