diff options
author | FOSSEE Git User | 2018-09-24 19:32:11 +0530 |
---|---|---|
committer | FOSSEE Git User | 2018-09-24 19:32:11 +0530 |
commit | 1cbca2170cbff08f908ff99c3cb2f4db292eeae8 (patch) | |
tree | a6c52ec29c4d13376e1c7d043efe49416c7ba6e8 /nccps2018 | |
parent | 0c339382b5831f8b79e12f854000de3e4096cba4 (diff) | |
parent | 8151a6b70040ca5fd5ef6f7539259a0e6be5a3b5 (diff) | |
download | nccps-2018-1cbca2170cbff08f908ff99c3cb2f4db292eeae8.tar.gz nccps-2018-1cbca2170cbff08f908ff99c3cb2f4db292eeae8.tar.bz2 nccps-2018-1cbca2170cbff08f908ff99c3cb2f4db292eeae8.zip |
Merge branch 'master' of https://github.com/FOSSEE/nccps-2018
Diffstat (limited to 'nccps2018')
-rw-r--r-- | nccps2018/urls.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nccps2018/urls.py b/nccps2018/urls.py index a688f8b..8cbd91a 100644 --- a/nccps2018/urls.py +++ b/nccps2018/urls.py @@ -26,16 +26,16 @@ urlpatterns = [ re_path(r'^', include('social.apps.django_app.urls', namespace='social')), - re_path(r'^forgotpassword/$', auth_views.PasswordResetView.as_view( + re_path(r'^nccps-2018/forgotpassword/$', auth_views.PasswordResetView.as_view( template_name='registration/password_reset_form.html'), name="password_reset"), - re_path(r'^password_reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', auth_views.PasswordResetConfirmView.as_view( + re_path(r'^nccps-2018/password_reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', auth_views.PasswordResetConfirmView.as_view( template_name='registration/password_reset_confirm.html'), name='password_reset_confirm'), - re_path(r'^password_reset/mail_sent/$', auth_views.PasswordResetDoneView.as_view(template_name='registration/password_reset_done.html'), + re_path(r'^nccps-2018/password_reset/mail_sent/$', auth_views.PasswordResetDoneView.as_view(template_name='registration/password_reset_done.html'), name='password_reset_done'), - re_path(r'^password_reset/complete/$', auth_views.PasswordResetCompleteView.as_view(template_name='registration/password_reset_complete.html'), + re_path(r'^nccps-2018/password_reset/complete/$', auth_views.PasswordResetCompleteView.as_view(template_name='registration/password_reset_complete.html'), name='password_reset_complete'), - re_path(r'^changepassword/$', auth_views.PasswordChangeView.as_view(template_name='registration/password_change_form.html'), + re_path(r'^nccps-2018/changepassword/$', auth_views.PasswordChangeView.as_view(template_name='registration/password_change_form.html'), name='password_change'), - re_path(r'^password_change/done/$', auth_views.PasswordChangeDoneView.as_view(template_name='registration/password_change_done.html'), + re_path(r'^nccps-2018/password_change/done/$', auth_views.PasswordChangeDoneView.as_view(template_name='registration/password_change_done.html'), name='password_change_done'), ]
\ No newline at end of file |