summaryrefslogtreecommitdiffstats
path: root/templates/registration/login.html
blob: b3b264c3e4ab80a7a93c7301cb849eccdd36e525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}

{% block content %}

<div class="greybox">
<h2 class="title">Developer Login</h2>
{% if form.has_errors %}
<p class="error">Your username and password didn't match. Please try again.</p>
{% endif %}
<br /><br />

<form method="post" action=".">
<input type="hidden" name="next" value="{% if next %}{{ next }}{% else %}/{% endif %}" />
<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>
	<tr><td colspan="2" align="right"><input type="submit" value="Login" /></td></tr>
</table>
</form>
</div>

{% endblock %}