-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1546 lines (1434 loc) · 62.6 KB
/
index.html
File metadata and controls
1546 lines (1434 loc) · 62.6 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8" />
<title>TaskSchedulePro - Free Task Management System</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="SchedulePro - Professional Task Management System. Organize, track, and complete your tasks efficiently with our powerful productivity tool.">
<meta name="keywords"
content="task management, todo list, productivity, project management, task scheduler, time management, kanban board, task tracker, productivity tool, task organizer, workflow management, deadline tracker, task planning, personal organizer, work management, team collaboration, task automation, reminder app, progress tracking, daily planner, task dashboard, productivity app" />
<meta name="author" content="SchedulePro Team" />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://taskschedulepro.netlify.app/" />
<meta property="og:title" content="SchedulePro - Professional Task Management System" />
<meta property="og:description"
content="Organize and track your tasks efficiently with SchedulePro. Features include task scheduling, progress tracking, multiple view layouts, and comprehensive analytics." />
<meta property="og:image" content="https://taskschedulepro.netlify.app/android-chrome-512x512.png" />
<meta property="og:site_name" content="SchedulePro" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SchedulePro - Professional Task Management System" />
<meta name="twitter:description"
content="Organize and track your tasks efficiently with SchedulePro. Features include task scheduling, progress tracking, multiple view layouts, and comprehensive analytics." />
<meta name="twitter:image" content="https://taskschedulepro.netlify.app/android-chrome-512x512.png" />
<meta name="twitter:url" content="https://taskschedulepro.netlify.app/" />
<meta name="twitter:site" content="@taskschedulepro" />
<meta name="twitter:creator" content="@taskschedulepro" />
<!-- Canonical URL -->
<link rel="canonical" href="https://taskschedulepro.netlify.app/" />
<!-- Favicon and App Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#ffffff">
<!-- Web App Manifest -->
<link rel="manifest" href="site.webmanifest" />
<meta name="apple-mobile-web-app-title" content="SchedulePro">
<meta name="application-name" content="SchedulePro">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<!-- Styles and Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css" />
</head>
<body class="dark-mode">
<!-- JSON-LD Structured Data for Better SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "SchedulePro",
"description": "Professional Task Management System for organizing and tracking tasks efficiently with features like Kanban boards, progress tracking, multiple view layouts, and comprehensive analytics.",
"url": "https://taskschedulepro.netlify.app/",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Task scheduling and management",
"Multiple view layouts (Kanban, List, Grid, Timeline)",
"Progress tracking with checkpoints",
"Tag-based organization",
"Priority and difficulty levels",
"Due date and time management",
"Recurring tasks",
"Productivity analytics and charts",
"Search and filtering capabilities",
"Data export and import",
"Dark/light theme support"
],
"screenshot": "https://taskschedulepro.netlify.app/android-chrome-512x512.png",
"author": {
"@type": "Organization",
"name": "SchedulePro Team"
},
"datePublished": "2024-01-01",
"softwareVersion": "1.0"
}
</script>
<div class="container">
<header>
<h1 class="title"><i class="fas fa-tasks"></i>SchedulePro</h1>
<div class="controls">
<select id="sort-select">
<option value="date-added-asc">Date Added: Low → High</option>
<option value="date-added-desc">Date Added: High → Low</option>
<option value="importance-asc">Importance: Low → High</option>
<option value="importance-desc">Importance: High → Low</option>
<option value="progress-asc">Progress: Low → High</option>
<option value="progress-desc">Progress: High → Low</option>
<option value="due-date-asc">Due Date: Soonest</option>
<option value="due-date-desc">Due Date: Farthest</option>
</select>
<div class="search-container">
<input type="text" id="search-input" class="search-input" placeholder="Search tasks..." />
<i class="fas fa-search search-icon"></i>
</div>
<button class="btn-info" id="help-btn">
<i class="fas fa-question-circle"></i>Help
</button>
<button class="btn-primary" id="auth-btn">
<i class="fas fa-user"></i>Login
</button>
<div class="theme-selector">
<button class="theme-btn" data-theme="light" title="Light Theme">
<i class="fas fa-sun"></i>
</button>
<button class="theme-btn" data-theme="dark" title="Dark Theme">
<i class="fas fa-moon"></i>
</button>
<button class="theme-btn" data-theme="blue" title="Blue Theme">
<i class="fas fa-water"></i>
</button>
<button class="theme-btn" data-theme="green" title="Green Theme">
<i class="fas fa-leaf"></i>
</button>
<button class="theme-btn" data-theme="pink" title="Pink Theme">
<i class="fas fa-heart"></i>
</button>
<button class="theme-btn" data-theme="orange" title="Orange Theme">
<i class="fas fa-fire"></i>
</button>
</div>
<button class="btn-info" id="settings-btn">
<i class="fas fa-cog"></i>Settings
</button>
<button class="btn-info" id="view-toggle">
<i class="fas fa-calendar"></i>Calendar View
</button>
</div>
</header>
<div class="stats">
<div class="stat-card">
<h3>Total Tasks</h3>
<div class="stat-value" id="total-tasks">0</div>
</div>
<div class="stat-card">
<h3>Completed</h3>
<div class="stat-value" id="completed-tasks">0</div>
</div>
<div class="stat-card">
<h3>In Progress</h3>
<div class="stat-value" id="inprogress-tasks">0</div>
</div>
<div class="stat-card">
<h3>Overdue</h3>
<div class="stat-value" id="overdue-tasks">0</div>
</div>
<div class="stat-card">
<h3>Overall Progress</h3>
<div class="stat-value" id="overall-progress">0%</div>
</div>
</div>
<div class="quick-actions">
<select id="tags-filter" class="tags-filter">
<option value="all">All Tags</option>
<option value="Work">Work</option>
<option value="Personal">Personal</option>
<option value="Urgent">Urgent</option>
</select>
<button class="btn-info" id="manage-tags-btn">
<i class="fas fa-tags"></i>Manage Tags
</button>
<button class="btn-info" id="bulk-select-toggle">
<i class="fas fa-check-square"></i>Bulk Select
</button>
<button class="btn-info" id="bulk-actions-btn" style="display: none;">
<i class="fas fa-tasks"></i>Bulk Actions
</button>
<button class="btn-info" id="archive-completed">
<i class="fas fa-archive"></i>Archive Completed
</button>
<button class="btn-info" id="show-archived">
<i class="fas fa-history"></i>Show Archived
</button>
<button class="btn-info" id="show-trash">
<i class="fas fa-trash-alt"></i>Trash
</button>
<button class="btn-primary" id="show-all">
<i class="fas fa-eye"></i>Show All
</button>
<button class="btn-info" id="show-active">
<i class="fas fa-running"></i>Show Active
</button>
<button class="btn-success" id="show-completed">
<i class="fas fa-check-circle"></i>Show Completed
</button>
<button class="btn-danger" id="clear-completed">
<i class="fas fa-trash"></i>Clear Completed
</button>
<button class="btn-warning" id="export-btn">
<i class="fas fa-download"></i>Export
</button>
<button class="btn-info" id="import-btn">
<i class="fas fa-upload"></i>Import
</button>
<input type="file" id="import-file" style="display: none" accept=".json" />
</div>
<!-- Advanced Search/Filter Panel -->
<div class="advanced-search-panel" id="advanced-search-panel">
<button class="toggle-advanced-search" id="toggle-advanced-search">
<i class="fas fa-filter"></i>Advanced Filters
</button>
<div class="advanced-search-content" id="advanced-search-content" style="display: none;">
<div class="filter-row">
<div class="filter-group">
<label>Date Range</label>
<input type="date" id="filter-date-from" placeholder="From">
<input type="date" id="filter-date-to" placeholder="To">
</div>
<div class="filter-group">
<label>Status</label>
<select id="filter-status" multiple>
<option value="todo">To-Do</option>
<option value="in-progress">In Progress</option>
<option value="done">Done</option>
</select>
</div>
<div class="filter-group">
<label>Difficulty</label>
<select id="filter-difficulty" multiple>
<option value="easy">Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
</div>
<div class="filter-group">
<label>Importance</label>
<select id="filter-importance" multiple>
<option value="1">Low</option>
<option value="2">Medium</option>
<option value="3">High</option>
</select>
</div>
</div>
<div class="filter-actions">
<button class="btn-primary" id="apply-filters">
<i class="fas fa-check"></i>Apply Filters
</button>
<button class="btn-info" id="clear-filters">
<i class="fas fa-times"></i>Clear Filters
</button>
</div>
</div>
</div>
<div class="task-form">
<div class="form-header">
<h2>Add New Task</h2>
<button class="btn-info" id="toggle-form">
<i class="fas fa-minus"></i>Collapse
</button>
</div>
<div id="form-content">
<div class="form-row">
<div class="form-group">
<label for="task-title"><i class="fas fa-heading"></i> Task Title</label>
<input type="text" id="task-title" placeholder="Enter task title" />
</div>
<div class="form-group">
<label for="task-due-date"><i class="fas fa-calendar-day"></i> Due Date</label>
<input type="date" id="task-due-date" />
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="task-start-time"><i class="fas fa-clock"></i> Start Time</label>
<input type="time" id="task-start-time" />
</div>
<div class="form-group">
<label for="task-end-time"><i class="fas fa-clock"></i> End Time</label>
<input type="time" id="task-end-time" />
</div>
</div>
<div class="form-group">
<label for="task-recurrence"><i class="fas fa-repeat"></i> Recurrence</label>
<select id="task-recurrence">
<option value="none">None</option>
<option value="daily">Daily</option>
<option value="weekly">Weekly</option>
<option value="monthly">Monthly</option>
</select>
</div>
<div class="form-group">
<label for="task-description"><i class="fas fa-align-left"></i> Description</label>
<textarea id="task-description" placeholder="Enter task description"></textarea>
</div>
<div class="form-row">
<div class="form-group">
<label for="task-difficulty"><i class="fas fa-fire"></i> Difficulty</label>
<select id="task-difficulty">
<option value="easy">Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
</div>
<div class="form-group">
<label><i class="fas fa-exclamation-circle"></i> Importance</label>
<div class="importance-selector">
<div class="importance-option selected" data-importance="1">
Low
</div>
<div class="importance-option" data-importance="2">Medium</div>
<div class="importance-option" data-importance="3">High</div>
</div>
</div>
</div>
<div class="form-group">
<label for="task-checkpoints"><i class="fas fa-check-square"></i> Checkpoints (one per
line)</label>
<textarea id="task-checkpoints" placeholder="Enter checkpoints, one per line"></textarea>
</div>
<div class="form-group">
<label for="task-tags"><i class="fas fa-tags"></i> Tags</label>
<div class="tags-input-container">
<div class="selected-tags" id="selected-tags"></div>
<input type="text" id="task-tags-input" placeholder="Type tag and press Enter" />
</div>
<div class="tags-suggestions" id="tags-suggestions"></div>
</div>
<div class="form-group">
<label for="task-reminder"><i class="fas fa-bell"></i> Reminder</label>
<select id="task-reminder">
<option value="none">No Reminder</option>
<option value="5">5 minutes before</option>
<option value="15">15 minutes before</option>
<option value="30">30 minutes before</option>
<option value="60">1 hour before</option>
<option value="1440">1 day before</option>
</select>
</div>
<div class="form-actions">
<button class="btn-primary" id="add-task">
<i class="fas fa-plus"></i>Add Task
</button>
<button class="btn-success" id="save-task" disabled>
<i class="fas fa-save"></i>Save Task
</button>
</div>
</div>
</div>
<!-- View Layout Selector -->
<div class="view-layout-selector">
<button class="layout-btn active" data-layout="kanban" title="Kanban View">
<i class="fas fa-columns"></i>Kanban
</button>
<button class="layout-btn" data-layout="list" title="List View">
<i class="fas fa-list"></i>List
</button>
<button class="layout-btn" data-layout="grid" title="Grid View">
<i class="fas fa-th"></i>Grid
</button>
<button class="layout-btn" data-layout="timeline" title="Timeline View">
<i class="fas fa-stream"></i>Timeline
</button>
<div class="density-toggle">
<button class="density-btn active" data-density="relaxed" title="Relaxed">
<i class="fas fa-expand-arrows-alt"></i>
</button>
<button class="density-btn" data-density="compact" title="Compact">
<i class="fas fa-compress-arrows-alt"></i>
</button>
</div>
</div>
<!-- Kanban View -->
<div class="task-grid" id="kanban-view">
<div class="category" data-status="todo">
<h2><i class="fas fa-clipboard-list"></i> To-Do</h2>
<div class="task-list" id="todo-list">
<div class="empty-state">
<i class="fas fa-clipboard-list"></i>
<p>No tasks to do. Add a new task!</p>
</div>
</div>
</div>
<div class="category" data-status="in-progress">
<h2><i class="fas fa-spinner"></i> In Progress</h2>
<div class="task-list" id="in-progress-list">
<div class="empty-state">
<i class="fas fa-spinner"></i>
<p>No tasks in progress</p>
</div>
</div>
</div>
<div class="category" data-status="done">
<h2><i class="fas fa-check-circle"></i> Done</h2>
<div class="task-list" id="done-list">
<div class="empty-state">
<i class="fas fa-check-circle"></i>
<p>No tasks completed yet</p>
</div>
</div>
</div>
</div>
<!-- List View -->
<div class="list-view" id="list-view" style="display: none; margin-bottom: 30px;">
<div class="list-container" id="list-container">
<!-- Tasks will be rendered here -->
</div>
</div>
<!-- Grid View -->
<div class="grid-view" id="grid-view" style="display: none;">
<div class="grid-container" id="grid-container">
<!-- Tasks will be rendered here -->
</div>
</div>
<!-- Timeline View -->
<div class="timeline-view" id="timeline-view" style="display: none; margin-bottom: 30px;">
<div class="timeline-container" id="timeline-container">
<!-- Tasks will be rendered here -->
</div>
</div>
<!-- Calendar View -->
<div class="calendar-view" id="calendar-view" style="display: none;">
<div class="calendar-header">
<button class="btn-info" id="prev-month">
<i class="fas fa-chevron-left"></i>
</button>
<h2 id="calendar-month-year">January 2023</h2>
<button class="btn-info" id="next-month">
<i class="fas fa-chevron-right"></i>
</button>
</div>
<div class="calendar-grid" id="calendar-grid">
<!-- Calendar will be populated by JavaScript -->
</div>
</div>
<!-- Charts & Stats Section -->
<div class="charts-section" id="charts-section">
<div class="section-header">
<h2>Productivity Analytics</h2>
<button class="collapse-btn" id="collapse-analytics">
<i class="fas fa-chevron-up"></i>
</button>
</div>
<div class="charts-content" id="charts-content">
<div class="charts-container">
<div class="chart-container">
<h3>Tasks Completion Trend</h3>
<canvas id="completion-chart"></canvas>
</div>
<div class="chart-container">
<h3>Tasks by Status</h3>
<canvas id="status-chart"></canvas>
</div>
<div class="chart-container">
<h3>Weekly Productivity</h3>
<canvas id="weekly-chart"></canvas>
</div>
</div>
</div>
</div>
</div>
<!-- Task Modal -->
<div class="modal-overlay" id="task-modal-overlay">
<div class="task-modal">
<button class="close-modal" id="close-modal">×</button>
<h2 id="modal-title">Task Details</h2>
<div class="form-group">
<label for="modal-task-title">Task Title</label>
<input type="text" id="modal-task-title" />
</div>
<div class="form-group">
<label for="modal-task-description">Description</label>
<textarea id="modal-task-description"></textarea>
</div>
<div class="form-row">
<div class="form-group">
<label for="modal-task-due-date">Due Date</label>
<input type="date" id="modal-task-due-date" />
</div>
<div class="form-group">
<label for="modal-task-recurrence">Recurrence</label>
<select id="modal-task-recurrence">
<option value="none">None</option>
<option value="daily">Daily</option>
<option value="weekly">Weekly</option>
<option value="monthly">Monthly</option>
</select>
</div>
<div class="form-group">
<label for="modal-task-difficulty">Difficulty</label>
<select id="modal-task-difficulty">
<option value="easy">Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="modal-task-start-time">Start Time</label>
<input type="time" id="modal-task-start-time" />
</div>
<div class="form-group">
<label for="modal-task-end-time">End Time</label>
<input type="time" id="modal-task-end-time" />
</div>
</div>
<div class="form-group">
<label for="modal-task-tags">Tags</label>
<div class="tags-input-container">
<div class="selected-tags" id="modal-selected-tags"></div>
<input type="text" id="modal-task-tags-input" placeholder="Type tag and press Enter" />
</div>
<div class="tags-suggestions" id="modal-tags-suggestions"></div>
</div>
<div class="form-group">
<label>Importance</label>
<div class="importance-selector">
<div class="importance-option" data-importance="1">Low</div>
<div class="importance-option" data-importance="2">Medium</div>
<div class="importance-option" data-importance="3">High</div>
</div>
</div>
<div class="form-group">
<label for="modal-task-reminder">Reminder</label>
<select id="modal-task-reminder">
<option value="none">No Reminder</option>
<option value="5">5 minutes before</option>
<option value="15">15 minutes before</option>
<option value="30">30 minutes before</option>
<option value="60">1 hour before</option>
<option value="1440">1 day before</option>
</select>
</div>
<div class="form-group">
<label>Checkpoints</label>
<div id="modal-checkpoints"></div>
</div>
<div class="form-actions modal-actions">
<button class="btn-info" id="archive-task">
<i class="fas fa-archive"></i>Archive
</button>
<button class="btn-danger" id="delete-task">
<i class="fas fa-trash"></i>Delete Task
</button>
<button class="btn-success" id="save-changes">
<i class="fas fa-save"></i>Save Changes
</button>
</div>
</div>
</div>
<!-- Help Modal -->
<div class="modal-overlay" id="help-modal-overlay">
<div class="help-modal">
<button class="close-modal" id="close-help-modal">×</button>
<h2><i class="fas fa-question-circle"></i> Complete User Guide</h2>
<div class="help-content">
<!-- Navigation Tabs -->
<div class="help-tabs">
<button class="help-tab active" data-tab="getting-started">Getting Started</button>
<button class="help-tab" data-tab="themes">Themes & UI</button>
<button class="help-tab" data-tab="tasks">Task Management</button>
<button class="help-tab" data-tab="views">View Layouts</button>
<button class="help-tab" data-tab="filtering">Search & Filter</button>
<button class="help-tab" data-tab="bulk">Bulk Actions</button>
<button class="help-tab" data-tab="tags">Tags & Organization</button>
<button class="help-tab" data-tab="advanced">Advanced Features</button>
<button class="help-tab" data-tab="shortcuts">Shortcuts</button>
</div>
<!-- Tab Content -->
<div class="help-tab-content active" id="getting-started">
<h3><i class="fas fa-rocket"></i> Getting Started</h3>
<p>Welcome to SchedulePro! Your ultimate task management companion.</p>
<h4>First Time Setup</h4>
<ol>
<li><strong>Complete Onboarding:</strong> Follow the 5-step tutorial on first launch</li>
<li><strong>Choose Theme:</strong> Select from 6 beautiful themes (Light, Dark, Blue, Green, Pink, Orange)
</li>
<li><strong>Select Layout:</strong> Choose your preferred view (Kanban, List, Grid, Timeline)</li>
<li><strong>Set Density:</strong> Pick Compact or Relaxed spacing mode</li>
<li><strong>Create Account (Optional):</strong> Sign up for cloud sync and multi-device access</li>
</ol>
<h4>Quick Start</h4>
<ol>
<li>Fill in the task form with title (required)</li>
<li>Add description, due date, and time</li>
<li>Set difficulty (Easy/Medium/Hard)</li>
<li>Choose importance level (Low/Medium/High)</li>
<li>Add checkpoints to break down the task</li>
<li>Assign tags for organization</li>
<li>Click "Add Task" button</li>
</ol>
<h4>Navigation Overview</h4>
<ul>
<li><strong>Header:</strong> Search, Help, Login/Profile, Theme selector, Settings, View toggle</li>
<li><strong>Stats Dashboard:</strong> Total tasks, Completed, In Progress, Overdue, Overall Progress</li>
<li><strong>Quick Actions:</strong> Tag filter, Manage tags, Bulk select, Archive, Trash, Export/Import</li>
<li><strong>Advanced Filters:</strong> Date range, Status, Difficulty, Importance filters</li>
<li><strong>Task Form:</strong> Add new tasks with all details</li>
<li><strong>View Selector:</strong> Switch between Kanban, List, Grid, Timeline layouts</li>
<li><strong>Analytics:</strong> Charts showing productivity trends (collapsible)</li>
</ul>
</div>
<div class="help-tab-content" id="themes">
<h3><i class="fas fa-palette"></i> Themes & UI Customization</h3>
<h4>Available Themes</h4>
<ul>
<li><strong><i class="fas fa-sun"></i> Light Theme:</strong> Clean, bright interface perfect for daytime use
</li>
<li><strong><i class="fas fa-moon"></i> Dark Theme:</strong> Easy on the eyes, great for nighttime or
low-light environments</li>
<li><strong><i class="fas fa-water"></i> Blue Theme:</strong> Ocean-inspired calming colors</li>
<li><strong><i class="fas fa-leaf"></i> Green Theme:</strong> Nature-themed, refreshing palette</li>
<li><strong><i class="fas fa-heart"></i> Pink Theme:</strong> Vibrant and fun, energetic colors</li>
<li><strong><i class="fas fa-fire"></i> Orange Theme:</strong> Warm and energetic, motivating atmosphere
</li>
</ul>
<h4>How to Change Theme</h4>
<ol>
<li>Look for theme buttons in the header (6 circular icons)</li>
<li>Click any theme button to instantly switch</li>
<li>Active theme is highlighted with glow effect</li>
<li>Theme preference is automatically saved</li>
</ol>
<h4>Density Modes</h4>
<ul>
<li><strong><i class="fas fa-expand-arrows-alt"></i> Relaxed Mode:</strong> Generous spacing, comfortable
viewing, better for touch devices</li>
<li><strong><i class="fas fa-compress-arrows-alt"></i> Compact Mode:</strong> Reduced padding, fits ~30%
more tasks on screen, maximizes space</li>
</ul>
<h4>Collapsible Sections</h4>
<ul>
<li><strong>Task Form:</strong> Click "Collapse" button to hide/show form</li>
<li><strong>Analytics Section:</strong> Click chevron icon to collapse charts</li>
<li><strong>Advanced Filters:</strong> Click "Advanced Filters" to toggle filter panel</li>
</ul>
</div>
<div class="help-tab-content" id="tasks">
<h3><i class="fas fa-tasks"></i> Task Management</h3>
<h4>Creating Tasks</h4>
<ul>
<li><strong>Title:</strong> Required field, describes the task</li>
<li><strong>Description:</strong> Optional detailed information</li>
<li><strong>Due Date:</strong> Calendar picker for deadline</li>
<li><strong>Start/End Time:</strong> Optional time range for task</li>
<li><strong>Recurrence:</strong> None, Daily, Weekly, or Monthly</li>
<li><strong>Difficulty:</strong> Easy (green), Medium (yellow), Hard (red)</li>
<li><strong>Importance:</strong> Low (1), Medium (2), High (3) - affects priority</li>
<li><strong>Checkpoints:</strong> Break task into sub-tasks (one per line)</li>
<li><strong>Tags:</strong> Multi-select for categorization</li>
<li><strong>Reminder:</strong> 5min, 15min, 30min, 1hr, or 1 day before</li>
</ul>
<h4>Editing Tasks</h4>
<ol>
<li>Click on any task card to open edit modal</li>
<li>Modify any field as needed</li>
<li>Check/uncheck checkpoints to track progress</li>
<li>Add new checkpoints using the input field</li>
<li>Click "Save Changes" to update</li>
</ol>
<h4>Task Status</h4>
<ul>
<li><strong>To-Do:</strong> Not started yet (left column in Kanban)</li>
<li><strong>In Progress:</strong> Currently working on (middle column)</li>
<li><strong>Done:</strong> Completed (right column)</li>
</ul>
<h4>Moving Tasks</h4>
<ul>
<li><strong>Drag & Drop:</strong> Click and drag task to different column (Kanban view)</li>
<li><strong>Complete Button:</strong> Click to mark as done</li>
<li><strong>Edit Modal:</strong> Change status in task details</li>
<li><strong>Bulk Actions:</strong> Change status of multiple tasks at once</li>
</ul>
<h4>Task Card Features</h4>
<ul>
<li><strong>Priority Border:</strong> Left border color indicates importance (Red=High, Yellow=Medium,
Green=Low)</li>
<li><strong>Progress Bar:</strong> Shows checkpoint completion percentage</li>
<li><strong>Difficulty Badge:</strong> Colored pill showing difficulty level</li>
<li><strong>Due Date:</strong> Displays deadline</li>
<li><strong>Importance Badge:</strong> Circular badge with importance number</li>
<li><strong>Tags:</strong> Colored tags with custom colors</li>
<li><strong>Icons:</strong> Visual indicators for difficulty, importance, overdue status</li>
</ul>
<h4>Deleting Tasks</h4>
<ul>
<li><strong>Soft Delete:</strong> Click delete button → moves to trash (can be restored)</li>
<li><strong>Permanent Delete:</strong> From trash modal, click "Delete Forever"</li>
<li><strong>Clear Completed:</strong> Permanently deletes all completed tasks</li>
</ul>
<h4>Archiving Tasks</h4>
<ul>
<li><strong>Single Archive:</strong> Click archive button in task modal</li>
<li><strong>Archive Completed:</strong> Archives all completed tasks at once</li>
<li><strong>View Archived:</strong> Click "Show Archived" to see archived tasks</li>
<li><strong>Restore:</strong> Click restore button in archived tasks modal</li>
</ul>
</div>
<div class="help-tab-content" id="views">
<h3><i class="fas fa-columns"></i> View Layouts</h3>
<h4><i class="fas fa-columns"></i> Kanban View (Default)</h4>
<ul>
<li>Three columns: To-Do, In Progress, Done</li>
<li>Drag and drop tasks between columns</li>
<li>Visual workflow representation</li>
<li>Best for: Project management, workflow tracking</li>
</ul>
<h4><i class="fas fa-list"></i> List View</h4>
<ul>
<li>Linear list of all tasks</li>
<li>Checkboxes for quick completion</li>
<li>Compact display with metadata</li>
<li>Click task to edit details</li>
<li>Best for: Simple to-do lists, quick scanning</li>
</ul>
<h4><i class="fas fa-th"></i> Grid View</h4>
<ul>
<li>Card-based grid layout</li>
<li>Auto-adjusting columns based on screen size</li>
<li>Visual overview of all tasks</li>
<li>Hover effects for interaction</li>
<li>Best for: Visual organization, overview</li>
</ul>
<h4><i class="fas fa-stream"></i> Timeline View</h4>
<ul>
<li>Chronological list sorted by due date</li>
<li>Visual timeline with connecting line</li>
<li>Shows full date for each task</li>
<li>Only shows tasks with due dates</li>
<li>Best for: Deadline tracking, time management</li>
</ul>
<h4><i class="fas fa-calendar"></i> Calendar View</h4>
<ul>
<li>Monthly calendar grid</li>
<li>Tasks displayed on their due dates</li>
<li>Navigate months with arrow buttons</li>
<li>Click task to edit</li>
<li>Today's date highlighted</li>
<li>Best for: Monthly planning, deadline visualization</li>
</ul>
<h4>Switching Views</h4>
<ol>
<li>Find view selector buttons above task area</li>
<li>Click desired layout button (Kanban/List/Grid/Timeline)</li>
<li>View switches instantly</li>
<li>Active view is highlighted</li>
<li>Preference is saved automatically</li>
</ol>
</div>
<div class="help-tab-content" id="filtering">
<h3><i class="fas fa-filter"></i> Search & Filtering</h3>
<h4>Quick Search</h4>
<ul>
<li>Located in header (search icon)</li>
<li>Type to search task titles and descriptions</li>
<li>Real-time filtering as you type</li>
<li>Case-insensitive search</li>
<li>Keyboard shortcut: <code>Ctrl + F</code></li>
</ul>
<h4>Sort Options</h4>
<ul>
<li><strong>Date Added:</strong> Low → High or High → Low</li>
<li><strong>Importance:</strong> Low → High or High → Low</li>
<li><strong>Progress:</strong> Low → High or High → Low</li>
<li><strong>Due Date:</strong> Soonest or Farthest</li>
</ul>
<h4>Tag Filter</h4>
<ul>
<li>Dropdown showing all your tags</li>
<li>Select "All Tags" to show everything</li>
<li>Select specific tag to filter</li>
<li>Only tasks with selected tag are shown</li>
</ul>
<h4>Quick Filter Buttons</h4>
<ul>
<li><strong>Show All:</strong> Display all active tasks</li>
<li><strong>Show Active:</strong> Only To-Do and In Progress tasks</li>
<li><strong>Show Completed:</strong> Only Done tasks</li>
</ul>
<h4>Advanced Filters</h4>
<p>Click "Advanced Filters" button to reveal detailed filtering options:</p>
<h5>Date Range Filter</h5>
<ul>
<li><strong>From Date:</strong> Show tasks due on or after this date</li>
<li><strong>To Date:</strong> Show tasks due on or before this date</li>
<li>Use both for specific date range</li>
</ul>
<h5>Status Filter</h5>
<ul>
<li>Multi-select: To-Do, In Progress, Done</li>
<li>Hold Ctrl/Cmd to select multiple</li>
<li>Shows only tasks matching selected statuses</li>
</ul>
<h5>Difficulty Filter</h5>
<ul>
<li>Multi-select: Easy, Medium, Hard</li>
<li>Filter by task difficulty level</li>
<li>Combine with other filters</li>
</ul>
<h5>Importance Filter</h5>
<ul>
<li>Multi-select: Low (1), Medium (2), High (3)</li>
<li>Filter by priority level</li>
<li>Great for focusing on high-priority tasks</li>
</ul>
<h5>Applying Filters</h5>
<ol>
<li>Set desired filter criteria</li>
<li>Click "Apply Filters" button</li>
<li>Tasks are filtered immediately</li>
<li>Click "Clear Filters" to reset all</li>
</ol>
<h4>Filter Combinations</h4>
<p>All filters work together! Examples:</p>
<ul>
<li>High importance + Hard difficulty = Challenging priorities</li>
<li>Due this week + In Progress = Current focus items</li>
<li>Work tag + High importance = Critical work tasks</li>
</ul>
</div>
<div class="help-tab-content" id="bulk">
<h3><i class="fas fa-check-square"></i> Bulk Actions</h3>
<h4>Enabling Bulk Select Mode</h4>
<ol>
<li>Click "Bulk Select" button in quick actions</li>
<li>All task cards show checkboxes</li>
<li>Button changes to "Cancel"</li>
<li>"Bulk Actions" button appears</li>
</ol>
<h4>Selecting Tasks</h4>
<ul>
<li>Click on any task card to select/deselect</li>
<li>Selected tasks show checkmark and highlight</li>
<li>Select as many tasks as needed</li>
<li>Selection count shown in bulk actions modal</li>
</ul>
<h4>Available Bulk Actions</h4>
<ul>
<li><strong>Mark Complete:</strong> Sets all selected tasks to Done status</li>
<li><strong>Archive:</strong> Archives all selected tasks</li>
<li><strong>Change Status:</strong> Change status of multiple tasks</li>
<li><strong>Delete:</strong> Moves all selected tasks to trash</li>
</ul>
<h4>Performing Bulk Actions</h4>
<ol>
<li>Select desired tasks</li>
<li>Click "Bulk Actions" button</li>
<li>Choose action from modal</li>
<li>Confirm if prompted</li>
<li>Action applies to all selected tasks</li>
<li>Success notification appears</li>
</ol>
<h4>Exiting Bulk Mode</h4>
<ul>
<li>Click "Cancel" button</li>
<li>All selections are cleared</li>
<li>Checkboxes disappear</li>
<li>Returns to normal view</li>
</ul>
<h4>Use Cases</h4>
<ul>
<li>Complete multiple related tasks at once</li>
<li>Archive old completed tasks</li>
<li>Delete multiple test/duplicate tasks</li>
<li>Move project tasks to different status</li>
</ul>
</div>
<div class="help-tab-content" id="tags">
<h3><i class="fas fa-tags"></i> Tags & Organization</h3>
<h4>Default Tags</h4>
<ul>
<li><strong>Work:</strong> Professional tasks (Blue)</li>
<li><strong>Personal:</strong> Personal errands (Green)</li>
<li><strong>Urgent:</strong> Time-sensitive items (Red)</li>
</ul>
<h4>Creating Custom Tags</h4>
<ol>
<li>Click "Manage Tags" button</li>
<li>Enter tag name in text field</li>
<li>Click color picker to choose tag color</li>
<li>Click "Add Tag" button</li>
<li>Tag appears in list immediately</li>
<li>Press Enter key as shortcut to add</li>
</ol>
<h4>Deleting Tags</h4>
<ol>
<li>Open "Manage Tags" modal</li>
<li>Find tag to delete</li>
<li>Click X button on tag</li>
<li>Confirm deletion</li>
<li>Tag removed from all dropdowns</li>
</ol>
<h4>Assigning Tags to Tasks</h4>
<ul>
<li>In task form, find "Tags" dropdown</li>
<li>Multi-select: Hold Ctrl/Cmd to select multiple</li>
<li>Selected tags shown with custom colors</li>
<li>Tags appear on task card</li>
</ul>
<h4>Tag Colors</h4>
<ul>
<li>Each tag has custom color</li>
<li>Colors shown on task cards</li>
<li>Colors shown in dropdowns</li>
<li>Easy visual identification</li>
<li>Choose colors that make sense for you</li>
</ul>
<h4>Tag Organization Strategies</h4>
<ul>
<li><strong>By Category:</strong> Work, Personal, Health, Finance</li>
<li><strong>By Project:</strong> Project A, Project B, Project C</li>
<li><strong>By Priority:</strong> Urgent, Important, Low Priority</li>
<li><strong>By Context:</strong> Home, Office, Errands, Calls</li>
<li><strong>By Time:</strong> Morning, Afternoon, Evening</li>
</ul>
<h4>Tag Persistence</h4>
<ul>
<li>Tags saved in browser localStorage</li>
<li>Persist across sessions</li>
<li>Available on same device/browser</li>