I created a project in django and the first thing I want to do is to create a superuser for admin account and then proceed with the django project but the problem is after creating a superuser account using
python manage.py createsuperuser
and filling out the information the superuser gets created it says
Superuser created successfully.
But when I try to login with these credentials it says
Please enter the correct username and password for a staff account. Note that both fields may be case-sensitive.
I am not sure if there is some other setting that I need to check out or I am doing something wrong.
Please suggest me solution for that.