-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·73 lines (70 loc) · 2.13 KB
/
index.html
File metadata and controls
executable file
·73 lines (70 loc) · 2.13 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<script src="js/jQuery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<title>Prueba para Git</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-md-6 col-sm-offset-2 col-md-offset-3">
<form role="form">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control input-lg" id="txtNombre" placeholder="Nombre">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control input-lg" id="txtApellido" placeholder="Apellido">
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="form-group">
<input type="number" class="form-control input-lg" id="txtEdad" placeholder="Edad" min="1" max="100">
</div>
</div>
<div class="col-md-9">
<div class="form-group">
<input type="mail" class="form-control input-lg" id="txtCorreo" placeholder="Correo Electronico">
</div>
</div>
</div>
<hr class="colorgraph">
<div class="row">
<div class="col-md-4 col-md-offset-1">
<div class="form-group">
<input type="text" class="form-control input-lg" id="txtUsuario" placeholder="Usuario">
</div>
</div>
<div class="col-md-4 col-md-offset-2">
<div class="form-group">
<input type="password" class="form-control input-lg" id="txtClave" placeholder="Clave">
</div>
</div>
</div>
<hr class="colorgraph">
<div class="row">
<div class="col-md-3">
<div class="form-group">
<input type="button" class="btn btn-primary input-lg" value="Guardar" onclick="guardar()">
</div>
</div>
</div>
</form>
<div id="mensaje" ></div>
<h4>Listado de Programas</h4>
<ul id="listado">
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="procesos.js"></script>
</body>
</html>