Can we add additional fields to UserCreationForm in django.
By default there are 5 fields in UserCreationForm:
- username
- first_name
- last_name
- password
If I want to add additional fields like age, gender then how can I add these in UserCreationForm.
I am new to django any reference or descriptive code will be appreciable.