-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
26 lines (26 loc) · 923 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
<!DOCTYPE html>
<html>
<head>
<title>Application Playlist</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script type="module" src="popup.js"></script>
<script type="module" src="onload.js"></script>
</head>
<body>
<div class="container">
<div class="app-row">
<ul id="app-list"></ul>
</div>
<div class="autofill-row">
<div class="btn press-me"><img id="save" src="media/save.svg"></img></div>
<div class="btn press-me" id="autofill">Autofill</div>
<div class="btn press-me blue" id="done">Done</div>
</div>
<div class="control-row">
<div id="left"> <img id="previous" src="media/prevArrow.svg"></img> </div>
<div class="circle"><img id="start" src="media/start.svg"></img></div>
<div id="right"> <img id="next" src="media/nextArrow.svg"></img> </div>
</div>
</div>
</body>
</html>