-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllamaAlerta.html
More file actions
34 lines (33 loc) · 1.2 KB
/
llamaAlerta.html
File metadata and controls
34 lines (33 loc) · 1.2 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
<!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/llamaAlerta.css">
</head>
<body>
<div class="container">
<h1>Lista de Alertas</h1>
<form name="form_reloj">
<input type="text" name="reloj" size="10" style="background-color : rgb(248, 245, 245); color : rgb(8, 8, 8); font-family : Verdana, Arial, Helvetica; font-size : 16pt; text-align : center;" onfocus="window.document.form_reloj.reloj.blur()">
</form>
<br>
<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:30" tabindex="1">
</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" tabindex="2">
</div>
<button type="submit" class="btn btn-primary">Agregar Alerta</button>
</form>
<hr>
<ul class="alert-list"></ul>
</div>
<script src="./JS/llamaAlerta.js"></script>
</body>
</html>