-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (80 loc) · 3.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="esp">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registro de elementos</title>
<link rel="stylesheet" href="./styles/general.css">
<link rel="stylesheet" href="./styles/registro.css">
<link rel="stylesheet" href="./styles/lista.css">
<link rel="stylesheet" href="./styles/actualizar.css">
</head>
<body>
<section class="Contenido">
<form class="form_registro" data-form-registro>
<div class="Box_Registro">
<div class="Box_Registro-forms">
<div class="form-campo1 form">
<label for="campo1" class="form_etiqs">CAMPO 1:</label>
<input type="text" id="campo1" class="form-input" data-input1>
<span></span>
</div>
<div class="form-campo2 form">
<label for="campo2" class="form_etiqs">CAMPO 2:</label>
<input type="text" id="campo2" class="form-input" data-input2>
<span></span>
</div>
<div class="form-campo3 form">
<label for="campo3" class="form_etiqs">CAMPO 3:</label>
<input type="text" id="campo3" class="form-input" data-input3>
<span></span>
</div>
</div>
<div class="Box_Registro-button">
<button class="button-registrar">Registrar</button>
</div>
</div>
</form>
<div class="Box_Lista">
<table class="tabla">
<thead>
<th>campo 1</th>
<th>campo 2</th>
<th>campo 3</th>
</thead>
<tbody data-tabla>
</tbody>
</table>
</div>
<form class="form_registro oculto" data-form-act>
<div class="Box_Registro">
<div class="Box_Registro-forms">
<div class="form-campo1 form">
<label for="campo1" class="form_etiqs">CAMPO 1:</label>
<input type="text" id="campo1" class="form-input" data-up1>
<span></span>
</div>
<div class="form-campo2 form">
<label for="campo2" class="form_etiqs">CAMPO 2:</label>
<input type="text" id="campo2" class="form-input" data-up2>
<span></span>
</div>
<div class="form-campo3 form">
<label for="campo3" class="form_etiqs">CAMPO 3:</label>
<input type="text" id="campo3" class="form-input" data-up3>
<span></span>
</div>
</div>
<div class="Box_Registro-button">
<button class="button-registrar" data-act>Actualizar</button>
</div>
</form>
</section>
<footer class="footer-info">
<h2 class="desarrollador">Desarrollado por <a href="https://t.me//dagabat">DAGABAT</a><br>2022
</h2>
</footer>
<script type="module" src="./js/servicios.js"></script>
</body>
</html>