summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/urls.py b/urls.py
new file mode 100644
index 0000000..eb64d93
--- /dev/null
+++ b/urls.py
@@ -0,0 +1,6 @@
+# This also imports the include function
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('changepw.views',
+ (r'^$', 'change_password'),
+)