-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/img/icon-32.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tag Recovery</title>
<link rel="stylesheet" href="/src/assets/css/styles.css" />
</head>
<body>
<div class="popup-wrapper">
<div id="logo-container">
<img
src="/src/assets//img//main-logo-white-transparent.svg"
alt="Tag Recovery Logo"
/>
</div>
<div class="white-container">
<div class="options-container">
<label for="expiration"
>Tags expire after
<input id="expiration" type="number" min="1" max="10" />
days</label
>
</div>
<div id="donation-buttons">
<p>Consider donating below!</p>
<a href="https://ko-fi.com/Z8Z8DBS8S" target="_blank">
<img
id="kofi-button"
src="https://storage.ko-fi.com/cdn/kofi1.png?v=3"
alt="Buy Me a Coffee at ko-fi.com"
/>
</a>
</div>
</div>
</div>
<script type="module" src="/src/scripts/popup.js"></script>
</body>
</html>