For my app, I\'d just like people to register with an email address and password an开发者_JAVA百科d use that to log in. Essentially I dont want the username to ever be seen by the end user.
I\'m looking at the API for authentication https://docs.djangoproject.com/en/1.3/topics/auth/ I can\'t seem to find information on simple user registration form that would send confirmation email a
Django-Registration has several form classes in the forms.py file. One is \"class RegistrationFormTermsOfService(RegistrationForm) ..
I have a function from django-registration which re-sends an activation email to the given recipients. I am trying to convert the function from accepting multiple users for a given email to only one u
I have a django-registration up and working. I would like to add two additional features to it and am having a bit of difficulty understanding the inner-workings of the log-in process.
This seems like a really simple problem, but I can\'t get it to work. django-registration will pass in the correct ?next=..... if the @login_required decorator is present in the particular view functi
I am trying to add a location field to a user\'s profile in django-registration. I have added the following model:
I am trying pass a new variable into a template within django-registration. Here is the code I have --
I\'m having problems with connecting to a signal in django. I\'ve been following a tutorial available at http://dmitko.ru/?p=546 and tried to extend user registration.
I am trying to create a custom profile to add additional fields to django-registration. Here is the code I have so far --