-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (100 loc) · 3.16 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/style.css" />
<script
src="https://kit.fontawesome.com/d6b812cea0.js"
crossorigin="anonymous"
></script>
<script defer src="scripts/script.js"></script>
<title>Yet Another To Do List App</title>
</head>
<body>
<nav>
<div class="nav-center">
<div class="nav-header">
<i class="fa-solid fa-list-check"></i>
</div>
<h4>Yet Another To-do-list</h4>
</div>
</nav>
<main>
<div class="appcontainer">
<div class="input-container">
<form action="" class="input-form" id="inputForm">
<section>
<label for="taskID">Task Number:</label>
<input
type="text"
name="taskID"
id=""
class="taskID"
size="8"
readonly
value="TN202300000"
/>
<label for="taskText">Task Description:</label>
<input
type="text"
name="taskText"
id=""
class="taskText"
size="45"
placeholder="Insert Task Here"
/>
</section>
<section>
<label for="dateStart">Start Date: </label>
<input
type="datetime-local"
class="dateStart"
name="dateStart"
id=""
/>
<label for="dateEnd">End Date: </label>
<input
type="datetime-local"
class="dateEnd"
name="dateEnd"
id=""
/>
</section>
<section>
<label for="taskProgress">Task Progress: </label>
<input
type="radio"
name="taskProgress"
id="ongoing"
value="ongoing"
checked
/>
<label for="ongoing">Ongoing</label>
<input
type="radio"
name="taskProgress"
id="completed"
value="completed"
/>
<label for="ongoing">Completed</label>
</section>
<section>
<label for="taskComment">Additional Comment: </label>
<input
type="text"
name="taskComment"
id=""
class="taskText"
size="70"
placeholder="Add additional comment"
/>
</section>
</div>
<button class="submit">Submit</button>
</form>
<div class="output container" id="outputContainer"></div>
</div>
</main>
</body>
</html>