from django import forms from django.contrib.auth.forms import UserCreationForm class SignUpForm(UserCreationForm): email = forms.EmailField(max_length=254, help_text='Required. Inform a valid email address.')