[Fixed]-Can't route reset email link to password reset view

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.

Leave a comment