-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 2.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SP Labo3</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="spinnerContainer">
<div id="spinner" class="spinner"></div>
</div>
<div id="formularioLista">
<table id="tablaPersonas">
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Apellido</th>
<th>Fecha de Nacimiento</th>
<th>DNI</th>
<th>Pais de Origen</th>
<th>Modificar/Eliminar</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<button id="btnAgregar">Agregar Elemento</button>
</div>
<div class="abmContainer">
<div id="formularioAbm" class="abmForm" style="display: none;">
<h1>Formulario ABM</h1>
<p>ID: <input type="text" id="abmId" readonly></p>
<p>Nombre: <input type="text" id="abmNombre" placeholder="Nombre"></p>
<p>Apellido: <input type="text" id="abmApellido" placeholder="Apellido"></p>
<p>Fecha de Nacimiento: <input type="text" id="abmFechaNacimiento" placeholder="AAAA/MM/DD" oninput="formatearFechaNacimiento(this)" pattern="\d{4}/\d{2}/\d{2}"></p>
<p>Tipo:
<select id="selectTipo">
<option value="Ciudadano">Ciudadano</option>
<option value="Extranjero">Extranjero</option>
</select>
</p>
<div id="ciudadano">
<p>DNI: <input type="number" id="abmDni" placeholder="DNI"></p>
</div>
<div id="extranjero">
<p>Pais de Origen: <input type="text" id="abmPaisOrigen" placeholder="Pais de Origen"></p>
</div>
<button type="button" id="btnAceptar">Aceptar</button>
<button type="button" id="btnCancelar">Cancelar</button>
</div>
</div>
<script src="main.js"></script>
</body>
</html>