-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (32 loc) · 827 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Shaman Build Notifier</title>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="popup.css" />
</head>
<body>
<h1>Shaman Build Notifier</h1>
<form>
<input type="text" id="branchName" placeholder="Branch Name">
<input type="text" id="sha1" placeholder="sha1">
<input type="button" id="addBranch" value="Add Branch">
</form>
<table>
<thead>
<tr>
<th>Select</th>
<th>Branch</th>
<th>Sha1</th>
<th>Total</th>
<th>Succeeded</th>
<th>Failed</th>
</tr>
</thead>
<tbody id="overviewTbl">
</tbody>
</table>
<input type="button" id="deleteBranch" value="Delete Branch">
</body>
</html>