Django's User Authentication system ( http://docs.djangoproject.com/en/dev/topics/auth/ ) is incredibly helpful in working with users. However, the documentation talks about password reset forms and makes it seem like it takes care of it the same way it does user login/logout.
The default URL for login and logout is
/accounts/login/ & /accounts/logout
Are there already defaults for changing the password, or do I have to build that functionality?