10 lines
252 B
Python
10 lines
252 B
Python
from django import forms
|
|
from django.contrib.auth.forms import UserCreationForm
|
|
from .models import User
|
|
|
|
|
|
class UserRegisterForm(UserCreationForm):
|
|
class Meta(UserCreationForm.Meta):
|
|
model = User
|
|
fields = ('login', 'is_superuser')
|