-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
42 lines (40 loc) · 833 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Domain Swap</title>
<script src="popup.js"></script>
</head>
<body>
<table>
<tr>
<td>
Domain:
</td>
<td>
Swap to Domain:
</td>
</tr>
<tr>
<td>
<input placeholder="instagram.com" id="txtSource" />
</td>
<td>
<input placeholder="imginn.com" id="txtDest" />
<button type="button" id="cmdAdd">Add</button>
</td>
</tr>
</table>
<br/>
Swaps:<br/>
<table>
<tr>
<td>
<select id="swapList"></select>
</td>
<td>
<button type="button" id="cmdDel">Edit/Delete</button>
</td>
</tr>
</table>
</body>
</html>