-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (41 loc) · 1.7 KB
/
index.php
File metadata and controls
47 lines (41 loc) · 1.7 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Alerts App</title>
<link rel="stylesheet" href="css/styles.css">
<script src="app.js"></script>
</head>
<body>
<div class="container">
<header>
<h1>Pick2Plan</h1>
<p>Plan your events seamlessly!</p>
</header>
<section class="chat-section">
<div class="chat-box" id="chat-box">
<div class="messages" id="messages">
<!-- Chatbot messages will appear here -->
</div>
<div class="pair">
<input type="text" id="user-input" placeholder="Talk to the bot..." onkeydown="if(event.key === 'Enter') sendMessage();">
<label for="image-upload" class="attach-button">
<img src="attach-file.png" alt="Attach" width=24px>
<input type="file" id="image-upload" style="display: none;" accept="image/*" onchange="handleImageUpload(event)">
</label>
<button onclick="sendMessage()">Send</button>
</div>
<!-- Clear Chat History button -->
<button id="clear-history-btn" onclick="clearChatHistory()">Clear History</button>
</div>
</section>
<section class="events-section">
<h2>Your Events</h2>
<div class="event-list" id="event-list">
<!-- List of events will be dynamically added here -->
</div>
</section>
</div>
</body>
</html>