7 lines
No EOL
214 B
Python
7 lines
No EOL
214 B
Python
from django.contrib.auth.forms import UserCreationForm
|
|
from .models import CustomUser
|
|
|
|
class CustomUserCreationForm(UserCreationForm):
|
|
class Meta:
|
|
model = CustomUser
|
|
fields = '__all__' |