From df77db72e2faa672f1704cdd7a507865a8d5a603 Mon Sep 17 00:00:00 2001 From: Nishanth Amuluru Date: Fri, 7 Jan 2011 11:07:21 +0530 Subject: Added csrf_token and included the urls --- templates/registration/login.html | 1 + urls.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/templates/registration/login.html b/templates/registration/login.html index b2e60d6..c5ab83b 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,6 +1,7 @@ {% extends 'base.html' %} {% block content %}
diff --git a/urls.py b/urls.py index 1f38f6e..693ed6b 100755 --- a/urls.py +++ b/urls.py @@ -21,4 +21,6 @@ urlpatterns = patterns('', url(r'^accounts/register/$', register, {'form_class': CustomRegistrationForm}, name='registration_register'), + + (r'^accounts/', include('registration.urls')), ) -- cgit