summaryrefslogtreecommitdiff
path: root/urls.py
blob: 525dc3211de08d56a946b3db51030bca5d25ba4f (plain)
1
2
3
4
5
6
7
8
# This also imports the include function
from django.conf.urls.defaults import *

urlpatterns = patterns('apps.changepw.views',
    url(r'^/$', 'index', name='index'),
    url(r'^/changepw$', 'change_password', name='changepw'),
    url(r'^/resetpw$', 'reset_password', name='resetpw'),
)