I want to know how do I create users in Django. I can use User.objects.create_user() but I can only store username, email, password, first name, last name. I see that django.contrib.auth.forms is depreciated so I cannot UserCreationForm.
What if I want to store more fields. Can anyone help me with it?