aamirtaymoor commited on
Commit
2bb43d0
·
verified ·
1 Parent(s): 50ac9b8

Update static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +29 -26
static/index.html CHANGED
@@ -1,34 +1,37 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
- <head>
4
- <meta charset="UTF-8"/>
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
  <title>Fast API 🤗 Space served with Uvicorn</title>
7
- <link rel="stylesheet" href="style.css"/>
8
  <script type="module" src="script.js"></script>
9
- </head>
10
- <body>
11
- <main>
12
- <section id="text-gen">
13
  <h1>Turner ml </h1>
14
  <form class="text-gen-form">
15
- <label for="text-gen-input">Text </label>
16
- <input
17
- id="text-gen-input"
18
- type="text"
19
- name="text"
20
- required
21
- />
22
- <label for="rating-input">Rating </label>
23
- <input
24
- id="rating-input"
25
- type="number"
26
- name="rating"
27
- />
28
- <button id="text-gen-submit">Submit</button>
29
- <p class="text-gen-output"></p>
 
 
30
  </form>
31
- </section>
32
- </main>
33
- </body>
34
  </html>
 
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
  <title>Fast API 🤗 Space served with Uvicorn</title>
7
+ <link rel="stylesheet" href="style.css" />
8
  <script type="module" src="script.js"></script>
9
+ </head>
10
+ <body>
11
+ <main>
12
+ <section id="text-gen">
13
  <h1>Turner ml </h1>
14
  <form class="text-gen-form">
15
+ <label for="text-gen-input">Text </label>
16
+ <input
17
+ id="text-gen-input"
18
+ type="text"
19
+ value="text"
20
+ name="text"
21
+ required
22
+ />
23
+ <label for="rating-input">Rating </label>
24
+ <input
25
+ id="rating-input"
26
+ type="number"
27
+ value="rating"
28
+ name="rating"
29
+ />
30
+ <button id="text-gen-submit">Submit</button>
31
+ <p class="text-gen-output"></p>
32
  </form>
33
+ </section>
34
+ </main>
35
+ </body>
36
  </html>
37
+