How to allow users to change their own passwords in Django?

前端 未结 9 1382
梦如初夏
梦如初夏 2021-01-30 03:57

Can any one point me to code where users can change their own passwords in Django?

9条回答
  •  被撕碎了的回忆
    2021-01-30 04:18

    You can also just use the django.contrib.auth.views.password_change view in your URLconf. It uses a default form and template; supplying your own is optional.

提交回复
热议问题