-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 2.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<title>Bug Tracker</title>
</head>
<body>
<div class="card-container my-5 border-left-0">
<div>
<img class="icon-circle" src="img/icons8-bug-64.png" alt="bug-tracker-logo">
<span class="title">Bug Tracker</span>
</div>
<div class="bug-card">
<!-- Floating Action Button -->
<button id="fab" class="fab float-right" data-toggle="modal" data-target="#add-bug-container">
<img class="m-auto" src="img/icons8-add-16.png" alt="add-icon">
</button>
<!-- Bug List -->
<ul id="list" class="list-group mt-3"></ul>
<!-- Modal for adding a bug to the list -->
<div id="add-bug-container" class="modal add-bug-container" data-backdrop="static">
<div class="container mb-3">
<div class="col-xs-4">
<h5 class="text-primary text-left mt-5">New Bug to Track</h5>
<input id="new-bug" class="form-control" type="text" placeholder="Enter text here...">
<button type="submit" data-dismiss="modal" class="btn btn-success"
onclick="addBug(document.getElementById('new-bug').value);">Save</button>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery and Bootstrap -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous">
</script>
<!-- Web3 and App JS files-->
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="js/config.js"></script>
<script src="js/getAccount.js"></script>
<script src="js/app.js"></script>
</body>
</html>