File size: 1,032 Bytes
bf858f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!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>