22 lines
612 B
Python
22 lines
612 B
Python
import django.contrib.auth.forms as forms
|
|
|
|
from django import forms
|
|
from django.contrib.auth.forms import UserCreationForm
|
|
from django.contrib.auth.models import User
|
|
|
|
# class UngleichAuthenticationForm(forms.AuthenticationForm):
|
|
# address = forms.CharField(max_length=45)
|
|
|
|
class NewUserForm(UserCreationForm):
|
|
email = forms.EmailField(required=True)
|
|
|
|
class Meta:
|
|
model = User
|
|
fields = ("username", "email", "password1", "password2")
|
|
|
|
def save(self, commit=True):
|
|
user = super(NewUserForm, self).save(commit=False)
|
|
user.email = self.cleaned_data['email']
|
|
if commit:
|
|
user.save()
|
|
return user
|