-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 2.55 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form validation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="heading">Task assignment form</h1>
<form id="task_form">
<div class="inputfield">
<h3 class="title">Employee Name</h3>
<div class="naming_input">
<input type="text" placeholder="" id="firstName">
<input type="text" placeholder="" id="lastName">
</div>
<div class="naming_para">
<p>First name</p>
<p>Last name</p>
</div>
<h3 class="title">Manager Name</h3>
<div class="naming_input">
<input type="text" placeholder="" id="managerFirstName">
<input type="text" placeholder="" id="managerLastName">
</div>
<div class="naming_para">
<p>First name</p>
<p>Last name</p>
</div>
<div class="task">
<h3>Task</h3>
<h3>Task ID</h3>
</div>
<div class="naming_input">
<input type="text" placeholder="" id="taskName">
<input type="text" placeholder="EX:3" id="taskId">
</div>
<h3 class="title">Status</h3>
<div class="radioBTN">
<input type="radio" name="Status" id="NotStarted" value="Not Started">
<label for="NotStarted">Not Started</label><br>
<input type="radio" name="Status" id="InProgress" value="In Progress">
<label for="InProgress">In Progress</label><br>
<input type="radio" name="Status" id="Done" value="Done">
<label for="Done">Done</label><br>
<input type="radio" name="Status" id="AwaitingFeedback" value="Awaiting Feedback">
<label for="AwaitingFeedback">Awaiting Feedback</label>
</div>
<h3 class="title">Additional Notes</h3>
<textarea class="textarea" cols="90" rows="10" id="notes" placeholder="Type Here..."></textarea>
<h3 class="title"> Instruction</h3>
<textarea class="textarea" id="instructions" cols="90" rows="5" itemid="Instructions"></textarea>
<hr>
<button type="submit" class="subBtn">Submit </button>
</div>
</form>
<div id="submittedData"></div>
<script src="form.js"></script>
</body>
</html>