-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturno.html
56 lines (55 loc) · 1.4 KB
/
turno.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
<!DOCTYPE html>
<html>
<head>
<title>Horario</title>
<link rel="icon" type="image/png" href="./IMG/horario.png">
</head>
<body>
<h1>Mi horario</h1>
<!-- Formulario para ingresar horarios -->
<form>
<label>
Fecha:
<input type="date" name="fecha" required>
</label><br><br>
<label>
Hora de inicio:
<input type="time" name="inicio" required>
</label><br><br>
<label>
Hora de término:
<input type="time" name="termino" required>
</label><br><br>
<label>
Break de la mañana:
<input type="time" name="break_am">
</label><br><br>
<label>
Break de la tarde:
<input type="time" name="break_pm">
</label><br><br>
<label>
Hora de colación:
<input type="time" name="colacion">
</label><br><br>
<button type="submit">Guardar</button>
</form>
<hr>
<!-- Tabla que muestra los horarios guardados -->
<table>
<thead>
<tr>
<th>Fecha</th>
<th>Hora de inicio</th>
<th>Hora de término</th>
<th>Break de la mañana</th>
<th>Break de la tarde</th>
<th>Hora de colación</th>
</tr>
</thead>
<tbody id="horario"></tbody>
</table>
<button id="guardar-datos">Guardar datos</button>
<script src="./JS/turno.js"></script>
</body>
</html>