12 lines
211 B
Python
12 lines
211 B
Python
from django.contrib.auth import forms as BaseAuthForms
|
|
|
|
from .models import User
|
|
|
|
|
|
class UserCreationForm(BaseAuthForms.UserCreationForm):
|
|
pass
|
|
|
|
|
|
class UserChangeForm(BaseAuthForms.UserChangeForm):
|
|
pass
|