leftypol/templates/mod/login.html

27 lines
598 B
HTML
Raw Normal View History

2012-04-12 23:29:08 +00:00
{% if error %}<h2 style="text-align:center">{{ error }}</h2>{% endif %}
<form action="" method="post">
<table style="margin-top:25px;">
<tr>
<th>
2012-05-05 15:33:10 +00:00
{% trans 'Username' %}
2012-04-12 23:29:08 +00:00
</th>
<td>
<input type="text" name="username" size="20" maxlength="30" value="{{ username|e }}">
</td>
</tr>
<tr>
<th>
2012-05-05 15:33:10 +00:00
{% trans 'Password' %}
2012-04-12 23:29:08 +00:00
</th>
<td>
<input type="password" name="password" size="20" maxlength="30" value="">
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="login" value="{% trans %}Continue{% endtrans %}" />
</td>
</table>
</form>