forms.py 259 B

12345678
  1. from django.contrib.auth.forms import UserCreationForm
  2. from shop.main.models import UserProfile
  3. class RegisterUserForm(UserCreationForm):
  4. class Meta:
  5. model = UserProfile
  6. fields = ('username', 'password1', 'password2', 'anons', 'avatar')