Advertisement
lamorfini

Untitled

May 19th, 2024
697
0
350 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 KB | None | 0 0
  1. class UserCreationFormAdmin(UserCreationForm):
  2.     class Meta:
  3.         model = User
  4.         fields = ['first_name', 'last_name', 'email', 'password1', 'password2']
  5.  
  6.  
  7. class UserChangeFormAdmin(UserChangeForm):
  8.     class Meta:
  9.         model = User
  10.         fields = ['first_name', 'last_name', 'display_name', 'email', 'date_of_birth', 'sex']
  11.  
  12. class Register(UserCreationForm):
  13.     captcha = MathCaptchaField()
  14.     class Meta:
  15.         model = User
  16.         fields = ['first_name', 'last_name', 'email', 'password1', 'password2']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement