summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index bfdb5ce..dc4f644 100644
--- a/urls.py
+++ b/urls.py
@@ -1,6 +1,9 @@
# This also imports the include function
from django.conf.urls.defaults import *
+from nordunet_change_password import *
urlpatterns = patterns('apps.changepw.views',
- url(r'^/$', 'change_password', name='changepw'),
+ url(r'^/$', 'index', name='index'),
+ url(r'^/changepw$', change_password(request, change_nordunet_sso_pw), name='changepw'),
+ url(r'^/changeppp$', reset_password(request, reset_nordunet_ppp_pw), name='resetpw'),
)