-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
29 lines (29 loc) · 845 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<h2>Github Reviewer Groups</h2>
<h5 style="margin-bottom: 4px">
Access Key
<span id="accessKeyLink">(make one)</span>
</h5>
<input id="accessKey" type="password" />
<div id="groupSelectRow">
<select id="groupSelect" aria-placeholder="group select"></select>
<button id="createGroupBtn">+</button>
<button id="deleteGroupBtn">-</button>
</div>
<div id="groupBody">
<h5>Group Name</h5>
<input id="groupName" />
<p>Separate usernames with commas</p>
<textarea id="usernames"></textarea>
<button id="addReviewersBtn">Add Reviewers</button>
<p id="infoText"></p>
<p id="errorText"></p>
</div>
<script src="popup.js"></script>
</body>
</html>