mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
19 lines
375 B
Python
19 lines
375 B
Python
from django import forms
|
|
|
|
from django.contrib.auth.forms import UserCreationForm
|
|
|
|
from .models import User
|
|
|
|
|
|
class SignUpForm(UserCreationForm):
|
|
email = forms.EmailField(required=False, help_text="Optional.")
|
|
|
|
class Meta:
|
|
model = User
|
|
fields = (
|
|
"username",
|
|
"email",
|
|
"password1",
|
|
"password2",
|
|
)
|