Spaces:
Running
Running
Update index.html
Browse files- index.html +31 -19
index.html
CHANGED
@@ -1,19 +1,31 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>IA RPA Requerimientos</title>
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css">
|
9 |
+
</head>
|
10 |
+
|
11 |
+
<body>
|
12 |
+
<div class="container mt-5">
|
13 |
+
<h1 class="text-center">Generador de Requerimientos RPA</h1>
|
14 |
+
<form id="request-form" class="mt-4">
|
15 |
+
<div class="mb-3">
|
16 |
+
<label for="input-text" class="form-label">Ingrese su solicitud:</label>
|
17 |
+
<input type="text" id="input-text" class="form-control"
|
18 |
+
placeholder="Ejemplo: Quiero los requerimientos para un sistema de RPA para correos con flask"
|
19 |
+
required>
|
20 |
+
</div>
|
21 |
+
<button type="submit" class="btn btn-primary">Enviar</button>
|
22 |
+
</form>
|
23 |
+
<div class="mt-4">
|
24 |
+
<h3>Respuesta:</h3>
|
25 |
+
<pre id="response-output" class="bg-light p-3 border rounded"></pre>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
<script src="script.js"></script>
|
29 |
+
</body>
|
30 |
+
|
31 |
+
</html>
|