JairoDanielMT commited on
Commit
dc0d913
·
verified ·
1 Parent(s): 86450e2

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +31 -19
index.html CHANGED
@@ -1,19 +1,31 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
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>