Re: Email address in registration form

2010-03-18 Thread shacker
On Mar 17, 8:01 pm, Wiiboy wrote: > Hi guys, > I'm using a combination of the UserCreationForm and my own ModelForm > of my Profile model to create a registration form.  I want to get > users' email addresses, however, that seems to be a field in > contrib.auth.User, so it should be in UserCreatio

Re: Email address in registration form

2010-03-18 Thread Wiiboy
Username/password are on the UserCreationForm (which is in django.contrib.auth.forms). -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email

Re: Email address in registration form

2010-03-18 Thread Sander
On 18 mrt, 04:01, Wiiboy wrote: > Hi guys, > I'm using a combination of the UserCreationForm and my own ModelForm > of my Profile model to create a registration form.  I want to get > users' email addresses, however, that seems to be a field in > contrib.auth.User, so it should be in UserCreatio

Email address in registration form

2010-03-17 Thread Wiiboy
Hi guys, I'm using a combination of the UserCreationForm and my own ModelForm of my Profile model to create a registration form. I want to get users' email addresses, however, that seems to be a field in contrib.auth.User, so it should be in UserCreationForm. I don't know whether to a. Add to the