HarmonyBot / templates /index.html
Shabi23's picture
Initial commit without background.jpg
bf858f1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Medical Bot</title>
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<div class="chat-container">
<div class="sidebar">
<button class="new-chat-button" onclick="newChat()">New</button>
<button class="exit-button" onclick="exitChat()">Exit</button>
</div>
<div class="main-content">
<div id="chat-box" class="chat-box">
<div class="message bot">Hi, Welcome to the Medical Bot. What is your query?</div>
</div>
<div class="input-container">
<input type="text" id="user-input" placeholder="Type your message here..." onkeypress="handleKeyPress(event)" />
<button class="send-button" onclick="sendMessage()">Send</button>
</div>
</div>
</div>
<script src="static/script.js"></script>
</body>
</html>