Skip to content

Commit 6962e02

Browse files
committed
Form section complate
1 parent d6aea9e commit 6962e02

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,27 @@ <h1>Issue Tracker
1414
<span class="badge" style="background-color: rgb(13, 230, 13);" id="issueCount"> 0 </span>
1515
<span class="badge" style="background-color: #d11111;" id="closedCount"> 0 </span>
1616
</h1>
17+
<div class="jumbotron">
18+
<h3>Add New Issue:</h3>
19+
<form id="issueInputForm">
20+
<div class="form-group">
21+
<label for="issueDescription">Description</label>
22+
<input type="text" class="form-control" id="issueDescription" placeholder="Describe the issue ...">
23+
</div>
24+
<div class="form-group">
25+
<label for="issueSeverity">Severity</label>
26+
<select id="issueSeverity" class="form-control">
27+
<option value="Low">Low</option>
28+
<option value="Medium">Medium</option>
29+
<option value="High">High</option>
30+
</select>
31+
</div>
32+
<div class="form-group">
33+
<label for="issueAssignedTo">Assigned To</label>
34+
<input type="text" class="form-control" id="issueAssignedTo" placeholder="Enter responsible ...">
35+
</div>
36+
<button type="submit" class="btn btn-primary">Add</button>
37+
</form>
38+
</div>
1739
</body>
1840
</html>

0 commit comments

Comments
 (0)