leftypol_vichan/templates/mod/login.html

28 lines
903 B
HTML
Raw Normal View History

2013-07-31 08:28:26 +00:00
{% if error %}<h2 style="text-align:center">{{ error }}</h2>{% endif %}
{% if config.url_banner %}<img class="board_image" src="{{ config.url_banner }}" {% if config.banner_width or config.banner_height %}style="{% if config.banner_width %}width:{{ config.banner_width }}px{% endif %};{% if config.banner_width %}height:{{ config.banner_height }}px{% endif %}" {% endif %}alt="" />{% endif %}
2013-07-31 08:28:26 +00:00
<form action="" method="post">
<table style="margin-top:25px;">
<tr>
<th>
{% trans 'Username' %}
</th>
<td>
<input type="text" name="username" size="20" maxlength="30" value="{{ username|e }}" autofocus>
2013-07-31 08:28:26 +00:00
</td>
</tr>
<tr>
<th>
{% trans 'Password' %}
</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>