stubbs12 / django-saml2-idp

Automatically exported from code.google.com/p/django-saml2-idp
0 stars 0 forks source link

Change Password implementation #15

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
django-saml2-idp dont have a change password application yet. 

But why not just use django contrib password change?

I did like this and works as a charm.

(r'^user/change_password/done/$',    
'django.contrib.auth.views.password_change_done', {'template_name': 
password_change_done.html'}),

(r'^user/change_password/$',        
'django.contrib.auth.views.password_change', {'template_name': 
'password_change.html'}),

Original issue reported on code.google.com by gabrielp...@gmail.com on 9 Jan 2013 at 6:37