-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodoapp.html
More file actions
187 lines (158 loc) · 5.86 KB
/
Copy pathtodoapp.html
File metadata and controls
187 lines (158 loc) · 5.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<!-- Google Fonts Link-->
<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=Mochiy+Pop+One&family=Monoton&family=Poppins:wght@300&family=Russo+One&display=swap" rel="stylesheet">
<!-- CSS link -->
<link rel="stylesheet" href="./assets/ToDoApp/ToDoCss/ToDostyles.css" />
<title>Task Master App</title>
</head>
<body>
<!-- animation -->
<div class="area" >
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div >
<!-- https://getbootstrap.com/docs/4.5/components/forms/#how-it-works -->
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<!-- <a class="navbar-brand" href="#">Contact The Creators</a> -->
<h5> Contact The Creators </h5>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#"
><span class="sr-only">(current)</span></a>
</li>
<!-- links for all of our Github accounts -->
<!-- Insert Your Github Link -->
<li class="nav-item">
<a class="nav-link" href="https://github.com/MichaelSatchell" target="_blank"> Michael Satchell </a>
<li class="nav-item">
<a class="nav-link" href="https://github.com/kefenis" target="_blank"> Solomon Kefeni </a>
<li class="nav-item">
<a class="nav-link" href="https://github.com/PayalTheAnalyst" target="_blank"> Payal Patel </a>
<li class="nav-item">
<a class="nav-link" href="https://github.com/LashaCole" target="_blank"> Lasha' Cole </a>
</li>
</ul>
</div>
</nav>
<!-- Form for input parts -->
<!-- 4 adding task form -->
<form id="myForm">
<h1>Task Master</h1>
<div class="form-group">
<label for="formGroupExampleInput">Task Name:</label>
<input
type="text"
name="TaskName"
class="checkInput form-control"
id="newTaskNameInput"
placeholder="Task Name"
/>
<label for="" id="errorsDip"></label>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Task Description:</label>
<textarea
name="TaskDescription"
class="checkInput1 form-control"
id="newTaskDescriptionInput"
rows="3"
input="text"
placeholder="Task Description"
></textarea>
</div>
<!-- using gride system -->
<div class="row">
<div class="col">
<label for="formGroupExampleInput">Assigned To:</label>
<input
name="assignedTo"
type="text"
id="newTaskAssignedTo"
class="checkInput2 form-control"
placeholder="Assigned To"
/>
</div>
<div class="col">
<label for="formGroupExampleInput">Due Date:</label>
<input
type="date"
name="dates"
class="checkInput3 form-control"
id="newTaskDueDate"
placeholder="dd-mm-yyyy"
value=""
min="1997-01-01"
max="2030-12-31"
/>
<p id="errors"></p>
<!-- <input type="text" class="form-control" placeholder="Last name" /> -->
</div>
</div>
<br /><br />
<button
type="button" onclick="validFormFieldInput()"
class="btn btn-primary btn-lg btn-block"
id="addButton"> Add Tasks </button>
<!-- check -->
<!-- task ouput area to list task that has been added by the user. -->
<!-- <div id ="tasks"></div> -->
<div class="form-group">
<label for="userOutput"> <h2> Task List</h2></label>
<div id ="ntasks"></div>
<!-- <textarea
name="taskList"
class="checkInput1 form-control "
id="newTaskList"
rows="3"> </textarea> -->
</form>
<!-- JQuery linsks -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
crossorigin="anonymous"></script>
<!-- linking the js file -->
<script src="./assets/ToDoApp/ToDojs/taskManager.js"></script>
<script src="./assets/ToDoApp/ToDojs/index.js"></script>
</body>
</html>