leftypol/templates/login.html

27 lines
587 B
HTML
Raw Normal View History

{error?<h2 style="text-align:center">{error}</h2>}
2011-02-20 11:55:07 +00:00
<form action="" method="post">
{redirect?<input type="hidden" name="redirect" value="{redirect}" />}
<table style="margin-top:25px;">
<tr>
<th>
Username
</th>
<td>
<input type="text" name="username" size="20" maxlength="30" value="{username}">
</td>
</tr>
<tr>
<th>
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="Continue" />
</td>
</table>
</form>