I have a login form on my homepage:

<form method="post" action="/accounts/login/">
Username:<input type="text" id="id_username" class="vTextField
required" name="username" size="15" value="" maxlength="30" />
Password:<input type="password" id="id_password" class="vPasswordField
required" name="password" size="15" value="" maxlength="30" />
<input type="hidden" name="next" value="/" />
<input type="submit" value="login" />

The homepage uses template fragment caching, but this block is not
cached (although I don't know why it couldn't be).  I'm not using CSRF
middleware.

There are many times when I can enter a username and password, click
the "login" button, and get the username/password don't match error.

The error page (/accounts/login, using example template from docs)
automatically fills in the username and password fields, and I can
just hit "login" again and I'm successfully logged in.  This means my
credentials were posted correctly.

What could causing this sporadic failure?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to