blob: fbf5b8bd7b909d84ce2f7422c7c73e672c0fbdaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?cs include:"templates/header.cs" ?>
<form method="post">
<?cs if:?error ?>
<div class="error"><?cs var:error ?></div>
<?cs /if ?>
<table class="user">
<tr>
<td><label for="login">Username</label></td>
<td><input type="text" id="login" name="login" size="30" maxlength="30" autofocus /></td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td><input type="password" id="password" name="password" size="30"/></td>
</tr>
<tr>
<td/>
<td class="right">
<input type="submit" value="Login" name="submit"/>
</td>
</tr>
</table>
</form>
<?cs include:"templates/footer.cs" ?>
|