-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (72 loc) · 3.27 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=KoHo:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/assets/css/style.css" />
<title>Administrador de Citas</title>
</head>
<body>
<div class="containeri p-5">
<h1 class="text-center display-2 w-bold">Administrador de pacientes de Veterinaria</h1>
<div id="contenido" class="row">
<div class="col-md-6 agregar-cita">
<form id="nueva-cita">
<h2 class="mt-3 mb-4 text-center">Datos del paciente</h2>
<div class="form-group row mb-1">
<label class="col-sm-4 col-lg-4 col-form-label mb-3 font-weight-bolder">Nombre Mascota:</label>
<div class="col-sm-8 col-lg-8">
<input type="text" id="mascota" name="mascota" class="form-control" placeholder="Nombre Mascota"/>
</div>
</div>
<div class="form-group row mb-1">
<label class="col-sm-4 col-lg-4 col-form-label mb-3 font-weight-bolder">Propietario:</label>
<div class="col-sm-8 col-lg-8">
<input type="text" id="propietario" name="propietario" class="form-control" placeholder="Nombre Dueño de la Mascota">
</div>
</div>
<div class="form-group row mb-1">
<label class="col-sm-4 col-lg-4 col-form-label mb-3">Teléfono:</label>
<div class="col-sm-8 col-lg-8">
<input type="tel" id="telefono" name="telefono" class="form-control" placeholder="Número de Teléfono" />
</div>
</div>
<div class="form-group row mb-1">
<label class="col-sm-4 col-lg-4 col-form-label mb-3">Fecha:</label>
<div class="col-sm-8 col-lg-8">
<input type="date" id="fecha" name="fecha" class="form-control" />
</div>
</div>
<div class="form-group row mb-1">
<label class="col-sm-4 col-lg-4 col-form-label mb-3">Hora:</label>
<div class="col-sm-8 col-lg-8">
<input type="time" id="hora" name="hora" class="form-control" />
</div>
</div>
<div class="form-group row mb-1">
<label class="col-sm-4 col-lg-4 col-form-label mb-3">Sintomas:</label>
<div class="col-sm-8 col-lg-8">
<textarea id="sintomas" name="sintomas" class="form-control" ></textarea>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-dark w-100 d-block mt-4 mb-5">Crear Cita</button>
</div>
</form>
</div>
<div class="col-md-6 mt-3 text-center">
<h2 id="administra" class="mb-4">Administra tus Citas</h2>
<ul id="citas" class="list-group lista-citas"></ul>
</div>
</div><!--.row-->
</div><!--.container-->
<!-- -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="./js/app.js" type="module" ></script>
</body>
</html>