leftypol/templates/login.html

28 lines
710 B
HTML
Raw Normal View History

2011-10-05 04:22:53 +00:00
{% if error %}<h2 style="text-align:center">{{ error }}</h2>{% endif %}
2011-02-20 11:55:07 +00:00
<form action="" method="post">
2011-10-05 04:22:53 +00:00
{% if redirect %}<input type="hidden" name="redirect" value="{{ redirect }}" />{% endif %}
2011-02-20 11:55:07 +00:00
<table style="margin-top:25px;">
<tr>
<th>
2011-11-23 12:52:38 +00:00
{% trans %}Username{% endtrans %}
2011-02-20 11:55:07 +00:00
</th>
<td>
2011-10-05 04:22:53 +00:00
<input type="text" name="username" size="20" maxlength="30" value="{{ username }}">
2011-02-20 11:55:07 +00:00
</td>
</tr>
<tr>
<th>
2011-11-23 12:52:38 +00:00
{% trans %}Password{% endtrans %}
2011-02-20 11:55:07 +00:00
</th>
<td>
<input type="password" name="password" size="20" maxlength="30" value="">
</td>
</tr>
<tr>
<td></td>
<td>
2011-11-23 12:52:38 +00:00
<input type="submit" name="login" value="{% trans %}Continue{% endtrans %}" />
2011-02-20 11:55:07 +00:00
</td>
</table>
2011-11-23 12:52:38 +00:00
</form>