Profile UpdateView (Default)
Profile Update View Form After Sign Up in Django
forms.py
from django import forms
from django.contrib.auth.models import User
# Profile Form
class ProfileForm(forms.ModelForm):
class Meta:
model = User
fields = [
'username',
'first_name',
'last_name',
'email',
]urls.py
profile.html

Last updated