I am new to django,In django1.3 how can I use the Built-in forms like PasswordChangeForm ,PasswordResetForm etc and the same using built-in views.Can any one share some liks or codes ,ideas,am absolutely .new to Django,Thanks in advance
Asked
Active
Viewed 2,175 times
0
-
possible duplicate of [Adding forgot-password feature to Django admin site](http://stackoverflow.com/questions/2272002/adding-forgot-password-feature-to-django-admin-site) – Blair Jan 02 '13 at 02:37
1 Answers
1
Django by default has all these forms built in views. For all those features, all you need to do is to, point them at relevant URL positions, that map to the specific views.
This question has already been answered:
-
I add url(r'^passreset/$',auth_views.password_reset,name='forgot_password1'), to my url.py . But I got an exception NoReverseMatch at /passresett/ "Reverse for 'django.contrib.auth.views.password_reset_done' with arguments '()' and keyword arguments '{}' not found" – Jisson Sep 21 '11 at 10:40
-