Skip to content

Instantly share code, notes, and snippets.

View prafullkotecha's full-sized avatar
🎯
Focusing

Prafull Kotecha prafullkotecha

🎯
Focusing
View GitHub Profile
from django import forms
from django.contrib.auth.models import User
class UserProfileForm(forms.ModelForm):
class Meta:
model = User
fields = ['first_name', 'last_name', 'email']