summaryrefslogtreecommitdiff
path: root/urls.py
blob: 063085715e77b01aa2dd4d75f1ae9f44b05cbb05 (plain)
1
2
3
4
5
6
7
8
9
# 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'),
    url(r'^/changeother$', 'changeother', name='changeother'),
)