-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (49 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>JS Issue Tracker</title>
<!--Latest compiled and minified Bootstrap CSS-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body onload="fetchIssues()">
<div class="container-fluid d-flex justify-content-center">
<h1>JS Issue Tracker</h1>
</div>
<div class="col-lg-6 m-auto bg-info py-3 border border-dark rounded" >
<h3>Add new Issue:</h3>
<form id="issueInputForm">
<div class="form-group">
<label for="issueInput">Description</label>
<input type="text" class="form-control" id="issueInput" placeholder="Describe the issue...">
</div>
<div class="form-group">
<label for="issueInput">Severity</label>
<select class="form-control" id="issueSeverityInput">
<option value="Low">Low</option>
<option value="Medium">Medium</option>
<option value="High">High</option>
</select>
</div>
<div class="form-group">
<label for="issueInput">Assigned To</label>
<input type="text" class="form-control" id="issueAssignedToInput" placeholder="Enter responsible...">
</div>
<button type="submit" class="btn btn-primary">Add</button>
</form>
</div>
<div class="container-fluid">
<div class="col-lg-6 mx-auto my-2 border border-dark rounded bg-info">
<div class="py-2" id="issuesList"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://chancejs.com/chance.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src='main.js'></script>
</body>
</html>