Changeset 7664
- Timestamp:
- 06/16/08 10:46:36 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/newforms-admin/docs/authentication.txt
r7663 r7664 542 542 {% block content %} 543 543 544 {% if form. has_errors %}544 {% if form.errors %} 545 545 <p>Your username and password didn't match. Please try again.</p> 546 546 {% endif %} … … 548 548 <form method="post" action="."> 549 549 <table> 550 <tr><td> <label for="id_username">Username:</label></td><td>{{ form.username }}</td></tr>551 <tr><td> <label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr>550 <tr><td>{{ form.username.label_tag }}</td><td>{{ form.username }}</td></tr> 551 <tr><td>{{ form.password.label_tag }}</td><td>{{ form.password }}</td></tr> 552 552 </table> 553 553
