Files
webarchive/chat/ChatApp/chat/forms.py
Raphael Rouiller aa54287126 Base
2024-07-08 14:06:52 +02:00

8 lines
229 B
Python

from django.contrib.auth.forms import UserCreationForm
from django.contrib.auth.models import User
class SignUpForm(UserCreationForm):
class Meta:
model = User
fields = ['username', 'password1', 'password2']