This commit is contained in:
2024-05-16 18:41:04 +02:00
commit 1e49f104d7
41 changed files with 1196 additions and 0 deletions

11
user/forms.py Normal file
View File

@@ -0,0 +1,11 @@
from django.contrib.auth import forms as BaseAuthForms
from .models import User
class UserCreationForm(BaseAuthForms.UserCreationForm):
pass
class UserChangeForm(BaseAuthForms.UserChangeForm):
pass