6 lines
215 B
Python
6 lines
215 B
Python
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.')
|