-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiniciar-sesion.html
More file actions
31 lines (31 loc) · 871 Bytes
/
iniciar-sesion.html
File metadata and controls
31 lines (31 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="es">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="../css/ventanas-modales.css">
</head>
<body>
<form method="post" action="validar.php">
<table width="500" align="center">
<tr>
<td colspan="2" align="center">Zona de acceso Restringido</td>
</tr>
<tr>
<td colspan="2" align="center">Introduce tu Nombre y Password</td>
</tr>
<tr>
<td>Nombre: </td><td><input type="text" name="login" /></td>
</tr>
<tr>
<td>Password: </td><td><input type="password" name="password"</td></td>
</tr>
<tr>
<td align="center" colspan="2"><br /><input type="submit" id="enviar" value="Entrar" /></td>
</tr>
<tr>
<td colspan="2" align="center">Si no estas registrado, <a href="registrarse.html">pulsa aquí</a></td>
</tr>
</table>
</form>
</body>
</html>