-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
42 lines (40 loc) · 1.21 KB
/
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
42
<!doctype html>
<meta charset="UTF-8" />
<html>
<head>
<title>Quick Links</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="popup-container">
<header class="popup-header">
<h2>Your Links</h2>
<button
id="settings-btn"
class="settings-icon"
title="Open Settings"
>
<img
src="icons/setting.png"
alt="Delete"
width="16"
height="16"
/>
</button>
</header>
<div id="links-list" class="links-list-container">
<p
id="no-profiles-popup-message"
class="empty-message"
style="display: none"
>
No links set up yet.<br />Click the gear icon!
</p>
</div>
<div class="footer">
<span id="copy-feedback" class="feedback"></span>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>