-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
44 lines (41 loc) · 1.5 KB
/
dashboard.html
File metadata and controls
44 lines (41 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>Notey-AO Dashboard</title>
<link rel="stylesheet" type="text/css" href="popup.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fullcalendar@5.11.3/main.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="dashboard-container">
<header class="dashboard-header">
<h1>Notey-AO</h1>
<div class="view-toggle">
<button id="list-view-btn" class="active">List</button>
<button id="calendar-view-btn">Calendar</button>
</div>
</header>
<main class="dashboard-main">
<div id="list-view">
<div class="add-task-wrapper">
<div class="add-task-container">
<input type="text" id="task-title" placeholder="Add a new task...">
<textarea id="task-content" placeholder="Description"></textarea>
<button id="add-task-btn">Add Task</button>
</div>
</div>
<div class="search-container">
<input type="text" id="search-bar" placeholder="Search notes...">
</div>
<ul id="timeline-list"></ul>
</div>
<div id="calendar-view" style="display: none;">
<div id="calendar"></div>
</div>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/fullcalendar@5.11.3/main.min.js"></script>
<script src="dashboard.js"></script>
</body>
</html>