Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Fast API 🤗 Space served with Uvicorn</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| <script type="module" src="my_script.js"></script> | |
| </head> | |
| <body> | |
| <main> | |
| <section id="text-gen"> | |
| <h1>Turner ml </h1> | |
| <form class="text-gen-form"> | |
| <label for="text-gen-input">Text </label> | |
| <input | |
| id="text-gen-input" | |
| type="text" | |
| value="text" | |
| name="text" | |
| required | |
| /> | |
| <label for="rating-input">Rating </label> | |
| <input | |
| id="rating-input" | |
| type="number" | |
| value="rating" | |
| name="rating" | |
| /> | |
| <button id="text-gen-submit">Submit</button> | |
| <p class="text-gen-output"></p> | |
| </form> | |
| </section> | |
| </main> | |
| </body> | |
| </html> | |