-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (56 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PrezPrompts</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container">
<h2>Generador de Prompts para presentaciones</h2>
<form id="prompt-form">
<div class="option-group" id="style-options">
<h4>Estilo</h4>
<!-- Aquí se inyectarán las opciones dinámicamente -->
</div>
<div class="option-group" id="tone-options">
<h4>Tono de voz</h4>
<!-- Aquí se inyectarán las opciones dinámicamente -->
</div>
<div class="option-group" id="purpose-options">
<h4>Propósito</h4>
<!-- Aquí se inyectarán las opciones dinámicamente -->
</div>
<div class="option-group" id="audience-options">
<h4>Audiencia | Público</h4>
<!-- Aquí se inyectarán las opciones dinámicamente -->
</div>
<div class="option-group" id="length-options">
<h4>Duración</h4>
<!-- Aquí se inyectarán las opciones dinámicamente -->
</div>
<div class="option-group" id="slide-count-options">
<h4>Número de diapositivas</h4>
<input type="range" id="slide-count" name="slideCount" min="5" max="12" value="10" />
<span id="slide-count-value">10</span>
</div>
<div class="option-group" id="slide-type-options">
<h4>Tipos de diapositivas</h4>
<!-- Aquí se inyectarán las opciones dinámicamente -->
</div>
<div class="option-group">
<h4>Idea base</h4>
<textarea id="idea-input" rows="3" placeholder="Escribe tu idea aquí"></textarea>
</div>
<button type="button" id="generate-prompt">Generar</button>
</form>
<div id="prompt-output">
<h4>Prompt</h4>
<textarea id="generated-prompt" rows="6" readonly></textarea>
<button id="copy-prompt">Copiar Prompt</button>
</div>
</div>
<script src="scripts/generate.js"></script>
</body>
</html>