thirdparty/google_appengine/lib/django/tests/templates/login.html
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 07 Apr 2009 18:12:29 +0000
changeset 2117 f1a1a75cdb00
parent 109 620f9b141567
permissions -rw-r--r--
Add missing imports, remove unsused imports, fix too long lines and some other style fixes in soc.views.models.student_project module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

<html>
<head></head>
<body>
<h1>Django Internal Tests: Login</h1>
{% if form.has_errors %}
<p>Your username and password didn't match. Please try again.</p>
{% endif %}

<form method="post" action=".">
<table>
<tr><td><label for="id_username">Username:</label></td><td>{{ form.username }}</td></tr>
<tr><td><label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr>
</table>

<input type="submit" value="login" />
<input type="hidden" name="next" value="{{ next }}" />
</form>
</body>
</html>