diff options
-rw-r--r-- | urls.py | 2 | ||||
-rw-r--r-- | views.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -4,5 +4,5 @@ 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'^/changeppp$', 'reset_password', name='resetpw'), + url(r'^/resetpw$', 'reset_password', name='resetpw'), ) @@ -7,12 +7,14 @@ def _change_password(request, user, new_password): ''' Use this to call your change password function. ''' + # Your code here return 0 def _reset_password(request, user, new_password): ''' Use this to call your reset password function. ''' + # Your code here return 0 def _get_username(request): |