-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (34 loc) · 955 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/popup.css" />
<title>GrapefruitID</title>
</head>
<body>
<div class="tool-bar">
<img
id="settings-icon"
class="icon"
src="icons/settings-icon.svg"
alt="settings"
/>
</div>
<h1 id="grapefruit-title" class="title">
<span class="grapefruit">GRAPEFRUIT</span> ID
</h1>
<h3 id="page-id"></h3>
<div class="flex-center">
<button id="copy" class="copy-btn">Copy To Clipboard</button>
</div>
<p class="copy-message"></p>
<hr />
<p class="page-history-link">ID History</p>
<ul class="page-history-display"></ul>
<div id="settings-panel">
<h2 class="title settings-title">Settings</h2>
</div>
<script src="scripts/popup.js"></script>
</body>
</html>