your ancestors
your ancestors

Reputation: 11

creating an admin user using django

I was creating an admin user account, when it got to create password my keys stopped working!!I even rebooted my system and started from top boom it happened again

tried to create password on django admin user account?

Upvotes: -1

Views: 42

Answers (1)

willeM_ Van Onsem
willeM_ Van Onsem

Reputation: 477641

The prompt for the password when you use the createsuperuser command [Django-doc] does not show the entered characters, for privacy and security concerns. Just like a password box in a browser does not show the password.

You thus enter the password and hit Enter to enter the password.

Upvotes: 0

Related Questions