-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.94 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.94 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Work Productivity — Meeting Planner & Time Blocker</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="app-header">
<h1>Workforce Focus | Productivity Tools for Adults</h1>
<nav>
<button id="nav-schedule" class="nav-btn" aria-pressed="false">Schedule</button>
<button id="nav-priority" class="nav-btn" aria-pressed="false">Priority Matrix</button>
<button id="nav-meetings" class="nav-btn" aria-pressed="false">Meeting Notes</button>
<button id="export-btn" class="nav-btn">Export</button>
</nav>
</header>
<main id="main" class="container" role="main">
<section id="schedule-view" class="view" aria-hidden="false">
<h2>Time Blocking</h2>
<div id="time-blocking"></div>
</section>
<section id="priority-view" class="view" aria-hidden="true" hidden>
<h2>Priority Management Table</h2>
<div id="priority-matrix" class="matrix" aria-label="Priority Management Table"></div>
</section>
<section id="meeting-view" class="view" aria-hidden="true" hidden>
<h2>Meeting Notes</h2>
<form id="meeting-form" class="meeting-form" aria-label="Add meeting note">
<input id="meeting-title" placeholder="Meeting title" required />
<input id="meeting-tags" placeholder="Tags (comma separated)" />
<textarea id="meeting-body" placeholder="Notes..." rows="5" required></textarea>
<div class="form-actions">
<button type="submit">Save Note</button>
</div>
</form>
<div id="meeting-list" class="meeting-list" aria-live="polite"></div>
</section>
</main>
<footer class="app-footer">
<small>Made for productivity. Store is local to your browser. Deploy on GitHub Pages.</small>
</footer>
<script type="module" src="app.js"></script>
</body>
</html>