diff options
| author | James Bennett <ubernostrum@gmail.com> | 2009-03-31 17:00:59 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2009-03-31 17:00:59 +0000 |
| commit | 33e87318c046ea73ed380b135eb1bbb471d301f3 (patch) | |
| tree | 458d80b3a162e4ca64d6472721a862a937959908 /docs/topics/auth.txt | |
| parent | 7af2b2dcea3aad129a25d19978345264698c256d (diff) | |
Fixed #10306: Corrected form action in auth login example.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10269 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/auth.txt')
| -rw-r--r-- | docs/topics/auth.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt index 47405dd875..c42388f393 100644 --- a/docs/topics/auth.txt +++ b/docs/topics/auth.txt @@ -745,7 +745,7 @@ the following line to your URLconf:: <p>Your username and password didn't match. Please try again.</p> {% endif %} - <form method="post" action="."> + <form method="post" action=""> <table> <tr> <td>{{ form.username.label_tag }}</td> |
