-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (45 loc) · 1.63 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
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body onload="getProductRecommendations()">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<h1>AOAI - Netflix</h1>
<input type="text" id="prompt" placeholder="Describe qué tipo de películas te gustan" style="width:350px;">
<input type="button" id="gen" value="Buscar">
<br>
<div id="status">
</div>
<br>
<div id="text">
</div>
<h2>
Catálogo de Películas
</h2>
<div id="peliculas">
</div>
<!-- Modal -->
<div class="modal" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modal-title"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="description">
</div><br>
<h6>
Te recomendamos
</h6>
<div id="recomended-films">
</div>
<br>
</div>
</div>
</div>
</div>
<script src="/embeddings.js"></script>
</body>