Hi! You can go this way:
1. install the right version of django-registration 1. this command will do the trick: 2. pip install https://bitbucket.org/ubernostrum/django-registration/downloads/django-registration-0.8-alpha-1.tar.gz 2. Add "registration" to installed apps, in your settings.py file: 1. Something like this: 2. 3. INSTALLED_APPS = ( 4. .... 5. 'registration', 6. .... 7. ) 3. Add the urls in your urls.py file. 1. something like this: 2. urlpatterns = patterns('', 3. .... 4. 5. # django-registration 6. url(r'^accounts/', include('registration.backends.default.urls')), 7. .... 8. ) 4. Add the templates. 1. I created the template set and uploaded it for sharing here: 2. https://github.com/matiasherranz/scoobygalletas/tree/master/django-registration-templates That's it! Let me know if you get stuck with something. M.- -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/qNiVJV-uWV4J. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.