PyRunner / frontend /index.html
Akoda35's picture
Create frontend/index.html
a20b707 verified
Raw
History Blame Contribute Delete
481 Bytes
<!DOCTYPE html>
<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>