1
You need to terminate your reset_password URL:
url(r'^reset_password/$', ...)
otherwise it will match everything beginning with that string.
Also note that Django has most of this functionality built in already.
Source:stackexchange.com
1
You need to terminate your reset_password URL:
url(r'^reset_password/$', ...)
otherwise it will match everything beginning with that string.
Also note that Django has most of this functionality built in already.