-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.46 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>PlayBrain</title>
<link rel="icon" href="data/imagenes/07.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/w3.css">
</head>
<body>
<br><br><br><br>
<div class="w3 w3-col m12">
<div class="w3 w3-col m3"><div style="visibility: hidden;">Espacio para div</div></div>
<div class="w3 w3-col m6">
<center>
<div class="panel" id="panel">
<h1><b>BIENVENIDO A PLAYBRAIN<b></h1>
<h3>Ingrese su nombre de usuario y contraseña para acceder al contenido.</h3>
<table>
<tr>
<td>
Nombre de usuario:
</td>
<td>
<input class="entradas" type="text" id="usuario">
</td>
</tr>
<tr>
<td>
Contraseña:
</td>
<td>
<input class="entradas" type="password" id="contrasena">
</td>
</tr>
</table><br>
<div id="alerta"></div>
<button type="button" class="boton" id="autenticar">Autenticar</button>
<button type="button" class="boton" id="ingresar" onclick="trasladar()">Continuar</button>
</div>
</center>
</div>
<div class="w3 w3-col m3"><div style="visibility: hidden;">Espacio para div</div></div>
</div>
</body>
<script src="js/logic.js"></script>
</html>