Opened 15 years ago

Closed 15 years ago

Last modified 12 years ago

#10306 closed (fixed)

login.html example FORM tag is wrong in http://docs.djangoproject.com/en/dev/topics/auth/

Reported by: jkafader Owned by: Kevin Kubasik
Component: Documentation Version: 1.0
Severity: Keywords: kkmegapatch
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi I just thought I'd pass this along:

the ACTION parameter on the FORM tag for your sample login.html template is almost certainly wrong. It should not be '.' -- I'm not an expert on FORM ACTION but I think it should instead be , which at least worked for me.

This cost me, actually, about an hour of development time, thinking there was something drastically wrong with the way I was passing or handling the ?next= parameter in my login form. You see, an action of '.' cuts off the GET CGI string, making your form unable to redirect properly (django.contrib.auth.views.login gets the 'redirect_to' variable from the GET string, not from POST), but still, confusingly, logging in the user correctly.

This really took up a lot of time to figure out, I guess I should have gone with my original instinct of action="" with my login.html rather than slavishly copying the one in the docs. But I just thought I'd let you know about an unnecessary gotcha.

--james

Attachments (2)

auth.diff (500 bytes ) - added by Kyle Fuller 15 years ago.
Diff for docs/topics/auth.txt
auth.2.diff (500 bytes ) - added by Kyle Fuller 15 years ago.
Diff for docs/topics/auth.txt

Download all attachments as: .zip

Change History (12)

comment:1 by jkafader, 15 years ago

sorry the above should read "It should not be '.' -- I'm not an expert on FORM ACTION, but I think it should instead be "" (empty string), which at least worked for me." I think the "" (empty string) double single quotes got stuck in the wiki formatting filter.

---james

comment:2 by (none), 15 years ago

milestone: post-1.0

Milestone post-1.0 deleted

comment:3 by Jacob, 15 years ago

milestone: 1.1
Triage Stage: UnreviewedAccepted

comment:4 by Kyle Fuller, 15 years ago

Has patch: set
Resolution: fixed
Status: newclosed

Simply use:

    <form method="post" action="{% url django.contrib.auth.views.login %}">

by Kyle Fuller, 15 years ago

Attachment: auth.diff added

Diff for docs/topics/auth.txt

by Kyle Fuller, 15 years ago

Attachment: auth.2.diff added

Diff for docs/topics/auth.txt

comment:5 by Kyle Fuller, 15 years ago

Triage Stage: AcceptedReady for checkin

comment:6 by Jacob, 15 years ago

Resolution: fixed
Status: closedreopened

Please don't mark tickets as fixed until the change actually gets checked into Django.

comment:7 by Jacob, 15 years ago

Triage Stage: Ready for checkinAccepted

comment:8 by Kevin Kubasik, 15 years ago

Keywords: kkmegapatch added
Owner: changed from nobody to Kevin Kubasik
Status: reopenednew

comment:9 by James Bennett, 15 years ago

Resolution: fixed
Status: newclosed

(In [10269]) Fixed #10306: Corrected form action in auth login example.

comment:10 by Jacob, 12 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top