CompetitiveAdvantage / index.html
CannaTech's picture
Update index.html
962529f verified
raw
history blame contribute delete
648 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<h1>Cannabis Retail Focus Group Chatbot</h1>
<div id="chatbox">
<!-- Messages will be appended here -->
</div>
<input type="text" id="user-input" placeholder="Ask a question..." />
<button id="send-button">Send</button>
<p id="status">Loading model...</p>
</div>
<script type="module" src="index.js"></script>
</body>
</html>