Created
May 18, 2012 13:30
-
-
Save schwuk/2725286 to your computer and use it in GitHub Desktop.
Including Email in the Django UserCreationForm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.forms import EmailField | |
from django.utils.translation import ugettext_lazy as _ | |
from django.contrib.auth.models import User | |
from django.contrib.auth.forms import UserCreationForm | |
class UserCreationForm(UserCreationForm): | |
email = EmailField(label=_("Email address"), required=True, | |
help_text=_("Required.")) | |
class Meta: | |
model = User | |
fields = ("username", "email", "password1", "password2") | |
def save(self, commit=True): | |
user = super(UserCreationForm, self).save(commit=False) | |
user.email = self.cleaned_data["email"] | |
if commit: | |
user.save() | |
return user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment