summaryrefslogtreecommitdiff
path: root/docs/topics/auth.txt
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2009-03-31 17:00:59 +0000
committerJames Bennett <ubernostrum@gmail.com>2009-03-31 17:00:59 +0000
commit33e87318c046ea73ed380b135eb1bbb471d301f3 (patch)
tree458d80b3a162e4ca64d6472721a862a937959908 /docs/topics/auth.txt
parent7af2b2dcea3aad129a25d19978345264698c256d (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.txt2
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>