How to Modify the default Django user table and the custom user table should consist of the 'first name','last name', 'gender', 'Email(Primary Key)', 'phone number' fields. How to do this? forms.py
class UserForm(ModelForm):
class Meta():
model= User
fields = 'First_name','Last_name','Gender', 'email','Phone_number'