I am creating my own form to register users, but how can I make possible to create superusers in it, and also I know django allows you, call user in the views like this:reques.user.username. I can only use that using django forms or I can also use that with my forms
I creating my own form because I don´t want the restriccion django password have, is there a way to change that, in oder to not create my own form
python manage.py createsuperuseryou can run command and other way is that while saving User data makeis_superuser = True.