I've created my own form:

<form method="POST" action="/accounts/login/">
  <label id="login" style="font-weight:bold;">Login:</label>
  <label id="login_username" value="{{ username }}">Username: </label>
  <input type="text" />
  <label id="login_password">Password:</label>
  <input type="password" />
  <input type="submit" value="login" />
</form>

I am mappying /accounts/login/ to a view of mine, which is then
calling:

if request.method == 'POST':
        username = request.POST['login_username']

I have no idea why I'm getting the error - "Key 'login_username' not
found in <QueryDict: {}>".

What am I doing wrong?
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to