active questions tagged contrib.auth - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T05:23:31Z http://stackoverflow.com/feeds/tag/contrib.auth http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/306425/generating-login-and-registration-forms-with-contrib-auth-in-django 3 Generating Login and Registration Forms with Contrib.Auth in Django Bryan Woods http://stackoverflow.com/users/2293 2008-11-20T18:49:30Z 2008-12-11T19:46:20Z <p>I'm new to Django and in bouncing around the framework over the past few days I haven't been able to figure out how to properly install the django.contrib.auth app in my project. Well, installing is probably not the right word, but configuring it for my purposes.</p> <p>What I'm truly hoping to do is extend the built-in classes to simply create registration and login forms, since my User class is working just fine from terminal.</p> <p>In settings.py I have django.contrib.auth in my INSTALLED_APPS. I also have installed the Authentication Middleware and Sessions Middleware.</p> <p>I can also clearly see in Django.contrib.auth.views and Django.contrib.auth.forms where the registration and authentication handlers are.</p> <p>My problem, it seems, since I'm new to the framework, is properly including these files in my project and generating the HTML forms for registration and login.</p> <p>(As in, do I need to include these Auth files in my app's forms.py? What do I need to model that hasn't already been modeled for me? And finally, since I can see in Django.contrib.auth.views a need for a registration directory with HTML templates, how can I get these all communicating with each other properly?)</p> <p>Any help would be much appreciated.</p> <p><strong>Figured out the problem. Just needed to take a deep breath and follow Django's URL Conf conventions. Example: (r'^accounts/login/$', 'django.contrib.auth.views.login'),</strong></p>