36746-vm/core/forms.py
Flatlogic Bot 6f60851c06 Numero 1
2025-12-08 02:29:03 +00:00

11 lines
361 B
Python

from django import forms
from django.contrib.auth.forms import UserCreationForm
from django.contrib.auth.models import User
class SignUpForm(UserCreationForm):
email = forms.EmailField(max_length=254, help_text='Required. Inform a valid email address.')
class Meta:
model = User
fields = ('username', 'email', 'password', 'password2')