-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexEditar.html
More file actions
42 lines (40 loc) · 1.51 KB
/
indexEditar.html
File metadata and controls
42 lines (40 loc) · 1.51 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
<!DOCTYPE html>
<html lang="es">
<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>Token "LabEstudio"</title>
<!-- BOOTSTRAP 4 -->
<link rel="stylesheet" href="https://bootswatch.com/4/lux/bootstrap.min.css">
</head>
<body>
<div id="guion" class="guion">
</div>
<div class="transaccion">
TRANSACCION <br>
<div class="transHeader">
ENCABEZADO <br>
idTra/idNow/fecha/hora[/nombre trans/a cuenta/descripcion/
</div>
<div class="transDetalle">
DETALLE <br>
idTra/cantidad/item/valor/total transa /saldo inicial/saldo final
</div>
</div>
<div class="cuentas">
CUENTAS <br>
idCue/idNow/fecha/hora/nombre cuenta/saldo inicial/saldo actual
</div>
<div class="transacciones">
TRANSACCIONES
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.1.js" integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<script src="./index.js"></script>
<!-- LLAMANDO A INCIO -->
<script>
window.addEventListener('load',inicio);
</script>
</body>
</html>