-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrabaAlertaLocal.html
More file actions
29 lines (29 loc) · 890 Bytes
/
grabaAlertaLocal.html
File metadata and controls
29 lines (29 loc) · 890 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Lista de Alertas</title>
<link rel="icon" type="image/png" href="./IMG/campana.png">
<link rel="stylesheet" href="./CSS/grabaAlertaLocal..css">
</head>
<body>
<div class="container">
<h1>Lista de Alertas</h1>
<form id="form-alerta">
<div class="form-group">
<label for="input-tiempo">Tiempo:</label>
<input type="text" class="form-control" id="input-tiempo" placeholder="Ejemplo: 10:30am">
</div>
<div class
<div class="form-group">
<label for="input-detalle">Detalle:</label>
<input type="text" class="form-control" id="input-detalle" placeholder="Ejemplo: Reunión de equipo">
</div>
<button type="submit" class="btn btn-primary">Agregar Alerta</button>
</form>
<hr>
<ul class="alert-list"></ul>
</div>
<script src="./JS/grabaAlertaLocal.js"></script>
</body>
</html>