-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (99 loc) · 3.97 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Prueba - Animales Salvajes</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="assets/css/estilos.css" />
</head>
<body>
<div class="row">
<div
class="col-12 card col-sm-7 text-center p-4 bg-warning shadow-lg"
id="Tabla"
>
<h3>Animales en investigación</h3>
<hr class="my-0 bg-dark w-75 mx-auto" />
<div
id="Animales"
class="my-3 p-3 d-flex align-items-start justify-content-start flex-wrap bg-dark"
></div>
</div>
<div class="card col-12 col-sm-4 bg-warning text-dark offset-1 shadow-lg">
<div class="card-body">
<h5 class="card-title">Registrar animal en:</h5>
<h6 class="card-subtitle mb-2 text-muted">
Ingrese los datos del animal
</h6>
<hr />
<div class="card-text my-3">
<div class="form-group">
<label for="exampleInputPassword1">Nombre del animal:</label>
<select class="form-control bg-dark text-white" id="animal">
<option disabled selected>Seleccione un animal</option>
<option value="Leon">León</option>
<option value="Lobo">Lobo</option>
<option value="Oso">Oso</option>
<option value="Serpiente">Serpiente</option>
<option value="Aguila">Águila</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Años de edad estimados:</label>
<select class="form-control bg-dark text-white" id="edad">
<option disabled selected>Seleccione un rango de años</option>
<option value="0 - 1 años">0 - 1 años</option>
<option value="1 - 3 años">1 - 3 años</option>
<option value="3 - 5 años">3 - 5 años</option>
<option value="5 - 8 años">5 - 8 años</option>
<option value="8 - 10 años">8 - 10 años</option>
<option value="Más de 10 años">Más de 10 años</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Comentarios:</label>
<textarea
rows="5"
class="form-control shadow-lg bg-dark text-white"
id="comentarios"
></textarea>
</div>
<div class="p-5 card bg-dark">
<div id="preview"></div>
</div>
</div>
<btn class="btn btn-light d-block" id="btnRegistrar">Agregar</btn>
</div>
</div>
</div>
<audio id="player" class="d-none"></audio>
<div class="modal fade" id="exampleModal">
<div class="modal-dialog modal-dialog-centered w-25" role="document">
<div class="modal-content bg-dark">
<div class="modal-body">...</div>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<script type="module" src="assets/js/index.js"></script>
<script type="module" src="assets/js/imagenes.js"></script>
</body>
</html>