-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturnos.html
68 lines (56 loc) · 2.74 KB
/
turnos.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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Turnos</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<script src="js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous">
</script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- <link rel="stylesheet" href="css/styles.css" /> -->
<script type="text/javascript" src="./js/scripts.js"></script>
<!-- <link href="css/styles.css" rel="stylesheet"> -->
</head>
<body>
<div class="container-fluid text-center px-5" style="width: 80%">
<div id="oradores" class="section">
<h2 class="visually-hidden"></h2>
<section class="container">
<h2>Agenda tu Cita Médica</h2>
<form>
<div class="form-group">
<label for="specialty">Especialidad:</label>
<select class="form-control" id="specialty">
<option>Cardiología</option>
<option>Dermatología</option>
<option>Pediatría</option>
</select>
</div>
<div class="form-group">
<label for="date">Fecha:</label>
<input type="date" class="form-control" id="date">
</div>
<div class="form-group">
<label for="time">Hora:</label>
<input type="time" class="form-control" id="time">
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
</section>
</body>
</html>