-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitacora.html
36 lines (34 loc) · 1.22 KB
/
bitacora.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
<!DOCTYPE html>
<html>
<head>
<title>BITACORA</title>
<link rel="icon" type="image/png" href="./IMG/editar.png">
<link rel="stylesheet" href="./CSS/bitacora.css">
</head>
<body>
<h1>BITACORA</h1>
<form class="formulario">
<p id="textoDelDia"></p>
<!-- CALENDARIO -->
<div class="tempo">
<input type="date" id="fechaBit" name="fechaBit" value="" class="form-field date"><br><br>
<p><span id="horaBit"></span></p>
</div>
<p><span id="horaGrabaBit"></span></p>
<!-- <p id="fechaBit"></p> -->
<section class="botonera">
<button type="button" onclick="guardarNota()">Guardar</button>
<div class="botonesJson">
<button onclick="leerJSON()">Leer JSON</button>
<button id="btnGuardar" onclick="guardarBitacora()">Guardar JSON</button>
<input type="file" id="archivoJSON">
</div>
<br>
</section>
<textarea id="nota" name="nota" rows="5" cols="50"></textarea><br><br>
<P>para fecha F3 Y para grabar F2</P>
</form>
<script src="./JS/libreria.js"></script>
<script src="./JS/bitacora.js"></script>
</body>
</html>