View IP adress page, ban form.

This commit is contained in:
Michael Save 2012-04-13 09:29:08 +10:00
parent f9ca74d763
commit 78f3ea7833
7 changed files with 289 additions and 3 deletions

26
templates/mod/login.html Normal file
View file

@ -0,0 +1,26 @@
{% if error %}<h2 style="text-align:center">{{ error }}</h2>{% endif %}
<form action="" method="post">
<table style="margin-top:25px;">
<tr>
<th>
{% trans %}Username{% endtrans %}
</th>
<td>
<input type="text" name="username" size="20" maxlength="30" value="{{ username|e }}">
</td>
</tr>
<tr>
<th>
{% trans %}Password{% endtrans %}
</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>