How to login as non-staff(active) user via admin login interface in Django without check staff in admin panel.

I am getting error
‘Please enter the correct username and password for a staff account. Note that both fields may be case-sensitive.’
while login as non-staff(active) user.
What should i do so that so i can log in via default Django interface?
Can we change authentication so that every type of user (active, staff, superuser) can login via same default admin Django interface?

For access to your site (not the admin), you should be using the standard Django authentication views.

See the docs at Using the Django authentication system | Django documentation | Django

No, i want to login as non-staff(active) user via default Django admin interface…
i want use default Django admin interface.
i don’t have my login temples.
?

No, you really don’t.

What problem do you think is going to be solved by doing this instead of working with Django the way it’s intended to be used?

Quoting directly from the docs for The Django admin site.

The admin’s recommended use is limited to an organization’s internal management tool. It’s not intended for building your entire front end around.

The admin interface is not your site.