-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (29 loc) · 907 Bytes
/
popup.html
File metadata and controls
35 lines (29 loc) · 907 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Tracer</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/popup.css" />
</head>
<body>
<div class="container">
<div id="header">
<img src="icon.png" alt="Tracer Image! yey" id="imageTracer" height="42" width="42">
<h1>TRACER</h1>
</div>
<div class="row">
<button id="add-project" class="btn btn-default">Add project</button>
<div id="itemAdd"></div>
</div>
<form id="radioForm"> <!-- for the radio buttons -->
<table id="tableMain" class="table">
<tbody id="main-list"></tbody>
<!--<tr id="orig-item"></tr>-->
</table>
</form>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>