forked from RealDevSquad/website-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (107 loc) · 4.1 KB
/
Copy pathindex.html
File metadata and controls
108 lines (107 loc) · 4.1 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
<!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="main.css">
<title>Tasks</title>
</head>
<body>
<div class="container">
<form action="" id="taskForm">
<div class="inputBox">
<label for="title">Title:</label>
<input type="text" name="title" placeholder="Title" id="title">
</div>
<div class="inputBox">
<label for="purpose">Purpose:</label>
<input type="text" id="purpose" name="purpose" placeholder="Purpose">
</div>
<div class="inputBox">
<label for="featureUrl">Feature URL:</label>
<input type="text" id="featureUrl" name="featureUrl" placeholder="Feature URL">
</div>
<div class="inputBox">
<div class="radioButtons">
<div class="dev">
<label for="dev">Dev</label>
<input type="radio" id="dev" name="type" value="dev">
</div>
<div class="group">
<label for="group">Group</label>
<input type="radio" id="group" name="type" value="group">
</div>
</div>
</div>
<div class="inputBox">
<label for="links">Links:</label>
<input type="text" name="links" id="links">
</div>
<div class="inputBox">
<label for="startedOn">Started:</label>
<input type="date" name="startedOn" id="startedOn">
</div>
<div class="inputBox">
<label for="endsOn">Ended:</label>
<input type="date" name="endsOn" id="endsOn">
</div>
<div class="inputBox">
<label for="status">Status:</label>
<select id="status">
<option value="blocked">Blocked</option>
<option value="active">Active</option>
<option value="pending">Pending</option>
</select>
</div>
<div class="inputBox">
<label for="ownerId">Owner Id:</label>
<input type="text" placeholder="Owner Id" id="ownerId" name="ownerId">
</div>
<div class="inputBox">
<label for="percentCompleted">Percent Completed:</label>
<input type="number" id="percentCompleted" name="percentCompleted" placeholder="Percent completed">
</div>
<div class="inputBox">
<label for="completionAward">Completion Award:</label>
<div class="inputBox">
<label for="completionAwardGold">Gold:</label>
<input type="number" id="completionAwardGold" name="completionAwardGold" placeholder="Number of gold coins">
</div>
<div class="inputBox">
<label for="completionAwardSilver">Silver:</label>
<input type="number" id="completionAwardSilver" name="completionAwardSilver" placeholder="Number of silver coins">
</div>
<div class="inputBox">
<label for="completionAwardBronze">Bronze:</label>
<input type="number" id="completionAwardBronze" name="completionAwardBronze" placeholder="Number of bronze coins">
</div>
</div>
<div class="inputBox">
<label for="lossRate">Loss Rate:</label>
<div class="inputBox">
<label for="lossRateGold">Gold</label>
<input type="number" id="lossRateGold" name="lossRateGold" placeholder="Number of gold coins">
</div>
<div class="inputBox">
<label for="lossRateSilver">Silver</label>
<input type="number" id="lossRateSilver" name="lossRateSilver" placeholder="Number of silver coins">
</div>
<div class="inputBox">
<label for="lossRateBronze">Bronze</label>
<input type="number" id="lossRateBronze" name="lossRateBronze" placeholder="Number of bronze coins">
</div>
</div>
<div class="inputBox">
<div class="checkBox">
<label for="isNoteworthy">Is noteworthy:</label>
<input type="checkbox" value="true" id="isNoteworthy" name="isNoteworthy">
</div>
</div>
<div class="inputBox">
<input type="submit" class="submitBtn" value="Submit" >
</div>
</form>
<script src="./script.js"></script>
</div>
</body>
</html>