-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (47 loc) · 1.97 KB
/
index.html
File metadata and controls
54 lines (47 loc) · 1.97 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
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smart-event-dashboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Smart Event Dashboard</h1>
<div id="container">
<!-- Add New Event Section -->
<div id="add-new-events">
<h2>Add New Events</h2>
<form id="event-form">
<label for="event-title">Event Title:</label>
<input type="text" id="event-title" name="event-title" required>
<label for="event-date">Event Date:</label>
<input type="date" id="event-date" name="event-date" required>
<label for="event-category">Category:</label>
<select id="event-category" name="event-category" required>
<option value="">Select Category</option>
<option value="conference">Conference</option>
<option value="workshop">Workshop</option>
<option value="seminar">Seminar</option>
</select>
<label for="event-description">Description:</label>
<textarea id="event-description" name="event-description" required></textarea>
<button id="add-event" type="submit">Add Event</button>
</form>
</div>
<!-- Event List Section -->
<div id="my-events">
<h2>My Events</h2>
<div id="buttons">
<button id="clear-events">Clear All Events</button>
<button id="sample-events">Add Sample Events</button>
</div>
<p id="no-event-message">No events added. Add your first event!</p>
<ul id="event-list">
<!-- Event items will be dynamically added here -->
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>