8 lines
252 B
Python
8 lines
252 B
Python
from django import forms
|
|
from django.contrib.auth.forms import UserCreationForm
|
|
from django.contrib.auth.models import User
|
|
|
|
class RegisterForm(UserCreationForm):
|
|
class Meta:
|
|
model=User
|
|
fields = ['username','password1','password2'] |