From aeb50765bdcb5e94bcd07d22f2cfa8f692e13911 Mon Sep 17 00:00:00 2001 From: Nishanth Amuluru Date: Thu, 10 Nov 2011 19:05:10 +0530 Subject: ENH: created user registration and login --- exam/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'exam/urls.py') diff --git a/exam/urls.py b/exam/urls.py index 1ca9755..e517adb 100644 --- a/exam/urls.py +++ b/exam/urls.py @@ -2,6 +2,8 @@ from django.conf.urls.defaults import patterns, include, url urlpatterns = patterns('exam.views', url(r'^$', 'index'), + url(r'^login/$', 'user_login'), + url(r'^register/$', 'user_register'), url(r'^start/$', 'start'), url(r'^quit/$', 'quit'), url(r'^complete/$', 'complete'), -- cgit