1👍
✅
Yes you can do this but you will need to set up your own view which wraps the auth view meaning that you will have to use a different Url:
# in urls.py
url(r'^custom-reset/$', 'myapp.views.custom_password_reset', name='custom_password_reset'),
# in views.py
from django.contrib.auth.views import password_reset
def custom_password_reset(request, *args, **kwargs):
# Do your custom processing of the args and kwargs
return password_reset(request, *args, **kwargs)
Source:stackexchange.com