diff --git a/django/contrib/admin/forms.py b/django/contrib/admin/forms.py
index f26c100..7d85753 100644
a
|
b
|
from django.contrib.auth.models import User
|
6 | 6 | |
7 | 7 | from django.utils.translation import ugettext_lazy, ugettext as _ |
8 | 8 | |
9 | | ERROR_MESSAGE = ugettext_lazy("Please enter a correct username and password. " |
10 | | "Note that both fields are case-sensitive.") |
| 9 | ERROR_MESSAGE = ugettext_lazy("Username and password incorrect or access to this page is restricted.") |
11 | 10 | |
12 | 11 | class AdminAuthenticationForm(AuthenticationForm): |
13 | 12 | """ |