8 lines
241 B
Python
8 lines
241 B
Python
from django.contrib.auth.forms import UserCreationForm
|
|
from django.contrib.auth.models import User
|
|
|
|
class SignupForm(UserCreationForm):
|
|
class Meta:
|
|
model = User
|
|
fields = ('username', 'password1', 'password2', 'first_name', 'last_name')
|