blob: 7ce47a1ee3e7b9c0826083d58a0f9933fd2eefab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?py include('templates/base_top.html') ?>
<center>
#{page}
<form action="#{cgi_url}manage" method="post">
<table>
<tr>
<td class="postblock">Usuario</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td class="postblock">Contraseña</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td colspan="2"><input id="submit" type="submit" name="submit" style="width:100%;" value="Entrar" /></td>
</tr>
</table>
</form>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>
|