-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_dashbord.html
79 lines (74 loc) · 2.41 KB
/
admin_dashbord.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<title>Admin Dashboard - International Conference 2024</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="admin_dashboard.css">
</head>
<body>
<div class="sidebar">
<h2>Admin Dashboard</h2>
<a href="#" onclick="showSection('participants')"><i class="fas fa-users"></i> Participants</a>
<a href="#" onclick="showSection('schedule')"><i class="fas fa-calendar-alt"></i> Schedule</a>
<a href="#" onclick="showSection('tracks')"><i class="fas fa-list"></i> Tracks</a>
<a href="home.html"><i class="fas fa-sign-out-alt"></i> Logout</a>
</div>
<div class="main-content">
<div class="header">
<h1>Welcome to the Admin Dashboard</h1>
</div>
<div id="participants" class="crud-section">
<h2>Participants</h2>
<button onclick="createItem('participants')">Add Participant</button>
<table id="participants-table">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Participant rows will go here -->
</tbody>
</table>
</div>
<div id="schedule" class="crud-section" style="display: none;">
<h2>Schedule</h2>
<button onclick="createItem('schedule')">Add Session</button>
<table id="schedule-table">
<thead>
<tr>
<th>ID</th>
<th>Session Title</th>
<th>Time</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Schedule rows will go here -->
</tbody>
</table>
</div>
<div id="tracks" class="crud-section" style="display: none;">
<h2>Tracks</h2>
<button onclick="createItem('tracks')">Add Track</button>
<table id="tracks-table">
<thead>
<tr>
<th>ID</th>
<th>Track Title</th>
<th>Description</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Tracks rows will go here -->
</tbody>
</table>
</div>
</div>
<script src="admin_dashboard.js"></script>
</body>
</html>