| <html> | |
| <head> | |
| <title>Atelier Concierge</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>Atelier Concierge AI</h1> | |
| <div class="card"> | |
| <textarea id="prompt"></textarea> | |
| <input type="file" id="imageUpload"> | |
| <button onclick="submitRequest()"> | |
| Generate | |
| </button> | |
| </div> | |
| <div id="results"></div> | |
| </div> | |
| <script src="app.js"></script> | |
| </body> | |
| </html> |