-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (99 loc) · 3.51 KB
/
index.html
File metadata and controls
111 lines (99 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> JavaScript Task Manager</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"
/>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1> Task.io</h1>
</header>
<main>
<div class="search-container">
<input type="text" id="search-input" placeholder="Search Tasks"/>
</div>
<!-- <button class="add-task">Add Tasks</button> -->
<div class="grid-container">
<div class="to-do-container">
<div class="todo-heading">
<h2>To Do</h2>
<button class="add-task"><img src="./images/icons/add.svg"/></button>
</div>
<div class="to-do"></div>
</div>
<div class="in-progress-container">
<h2>In Progress</h2>
<div class="in-progress"></div>
</div>
<div class="complete-container">
<h2>Completed tasks</h2>
<div class="complete"></div>
</div>
</div>
<div id="add-task-dialog" title="Add Task" style="display: none">
<form>
<div class="top">
<div class="update-note">
<label for="note">Enter Note:</label>
<input id="task-note" name="note" />
</div>
</div>
<div class="task-title">
<div class="update-title">
<label for="title">Enter Title:</label>
<input id="task-title" type="text" name="title" required />
</div>
</div>
<div class="description">
<div class="update-description">
<label for="description"> Enter description</label>
<textarea
id="task-description"
rows="4"
cols="50"
id="description"
name="description"
required
></textarea>
</div>
</div>
<div class="update-assignees">
<label for="assignedTo">Enter assignees:</label>
<input
id="task-assignedTo"
name="assignedTo"
placeholder="Enter multiple names separated by a coma"
required
/>
</div>
<hr/>
<div class="update-cancel">
<div class="buttons">
<button id="submit-btn" type="submit">Add Task</button>
<button id="cancel-btn">Cancel</button>
</div>
</div>
</form>
</div>
</main>
<footer>
© 2023- All rights reserved
</footer>
<script src="taskManager_lib.js"></script>
<script src="script.js"></script>
</body>
</html>