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