blob: 49a8ec6e06fd121300ffcf03254ab33dc02aa937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?cs include:"templates/header.cs" ?>
<div align="center">
<form method="post" action="<?cs var:action ?>">
<table>
<tr>
<td>Username</td><td><input type="text" name="username" size="25" /></td>
</tr>
<tr>
<td>Password</td><td><input type="password" name="password" size="25" /></td>
</tr>
<tr>
<td/><td><input type="submit" value="Login"/></td>
</tr>
</table>
</form>
</div>
<?cs include:"templates/footer.cs" ?>
|