Password reset in Django 1.0
Resetting password changed in 1.0, and the documentation for this is missing. The basic way of using new views is to add this set to urlconf:
Default templates are in django/contrib/admin/templates/registration and can be used out of the box, but they have Admin Panel like look. You can set paths to your custom templates (copy & edit the original ones): If you want to use those views wrapped in your own views, then you will get few NoReverseMatch: Reverse for 'yourapp.django.contrib.auth.views.password_reset_confirm' with arguments '()' and keyword arguments... exceptions. You have to pass to the views also a post_reset_redirect argument with URLs to other password reset views:- password_reset - URL for password_reset_done view
- password_reset_confirm - URL for password_reset_complete view
- password_reset_email.html - You have add in some way URL to password_reset_confirm in URL tag:
RkBlog