-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterface.html
More file actions
31 lines (31 loc) · 1.13 KB
/
Interface.html
File metadata and controls
31 lines (31 loc) · 1.13 KB
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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot Interface</title>
<link rel="stylesheet" href="Interface_style.css">
</head>
<body>
<div class="container">
<div class="sidebar">
<div class="profile">
<div class="profile-pic"></div>
<div class="profile-text">Profile</div>
</div>
<div class="search-history">Search history</div>
</div>
<div class="chat-area">
<div class="message bot-message">Hello! How can I help you today?</div>
<div class="message user-message">I have a question about my order.</div>
<div class="message bot-message">Sure! Please provide your order number.</div>
<div class="message user-message">#12345</div>
</div>
<div class="input-area">
<input type="text" id="messageInput" placeholder="Type here...">
<button id="sendButton">►</button>
</div>
</div>
<script src="Interface_func.js"></script>
</body>
</html>