Opened 17 years ago
Closed 17 years ago
#8216 closed (duplicate)
Fix redirect on sucessful password_reset_confirm
| Reported by: | Owned by: | ||
|---|---|---|---|
| Component: | contrib.auth | Version: | dev |
| Severity: | Keywords: | password_reset_confirm, password_reset_complete | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
Currently the redirect points to "../done/".
The "password/reset/done/" template says "We've e-mailed you instructions...". This is for after the password reset request.
The redirect should point to "password/reset/complete/", see below:
# Change:
return HttpResponseRedirect("../done/")
# to:
return HttpResponseRedirect('%scomplete/' % request.path)
Change History (2)
comment:1 by , 17 years ago
comment:2 by , 17 years ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
This looks like it's better addressed by #8131.