File size: 847 Bytes
a915ce2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4956caf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
    <div class="chat-container">
        <div class="chat-header">
            <button class="back-button">&larr;</button>
            <span>Chat</span>
        </div>
        <div class="chat-box" id="chatbox"></div>
        <div class="input-area">
            <button id="mic-button">🎤</button>
            <input type="text" id="user-input" placeholder="Write a message...">
            <button id="send-button" style="display: none;">&#10148;</button>
        </div>
    </div>
    <script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>