-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (48 loc) · 1.8 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Bar with Send Button, Sidebar, and Chat</title>
<!-- Include Font Awesome -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Color Picker -->
<div class="color-picker">
<label for="theme-color">Choose Theme Color:</label>
<select id="theme-color">
<!-- Options will be populated by JavaScript -->
</select>
</div>
<!-- Chat container -->
<div class="chat-container" id="chat-container">
<!-- Chat bubbles will appear here -->
<div class="empty-chat-background" id="empty-chat-background">palina.ai</div>
</div>
<div class="search-container">
<textarea id="search-input" placeholder="Ask anything to Palina" rows="1"></textarea>
<button id="send-button" type="submit">
<i class="fas fa-paper-plane"></i>
</button>
</div>
<!-- Floating circle with new chat icon -->
<div class="floating-circle new-chat-circle" id="new-chat-circle">
<i class="fas fa-plus" id="new-chat-icon"></i>
</div>
<!-- Floating circle with hamburger icon -->
<div class="floating-circle toggle-sidebar-circle" id="toggle-sidebar">
<i class="fas fa-bars" id="hamburger-icon"></i>
</div>
<!-- Sidebar for history questions -->
<div class="sidebar" id="sidebar">
<h2>History</h2>
<ul id="history-list">
<!-- History items will appear here -->
</ul>
</div>
<!-- Include the app's JavaScript -->
<script src="script/app.js"></script>
</body>
</html>