lainchan/templates/login.html

28 lines
710 B
HTML
Raw Normal View History

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