-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
78 lines (74 loc) · 2.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8" />
<title>Cookie Manager</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="nav">
<!-- Add the logo image in the navbar -->
<img src="./images/logo.png" alt="Logo" class="logo" />
</div>
<div class="content">
<div class="selector">
<!-- Slider for animation -->
<div class="slider"></div>
<!-- Buttons -->
<div class="left-selector selected">this site</div>
<div class="right-selector">all sites</div>
</div>
<div id="cookie-list"></div>
<!-- Button to delete all cookies -->
<!-- <button id="delete-all-button">Șterge toate cookie-urile</button> -->
<!-- Block All Cookies Switch -->
<div class="block-all-cookies">
<span class="switch-label">block <b>all</b> cookies</span>
<label class="switch1">
<input type="checkbox" id="block-all-switch" class="block-switch" />
<span class="switcher round"></span>
</label>
</div>
</div>
<!-- 2x2 grid of switches -->
<div class="switch-grid hide">
<div class="switch-row">
<div class="switch-item">
<span class="switch-label2">Advertising</span>
<label class="switch2">
<input type="checkbox" id="advertising-switch" class="grid-switch switch" />
<span class="switcher2 round"></span>
</label>
</div>
<div class="switch-item">
<span class="switch-label2">Analytics</span>
<label class="switch2">
<input type="checkbox" id="analytics-switch" class="grid-switch switch" />
<span class="switcher2 round"></span>
</label>
</div>
</div>
<div class="switch-row">
<div class="switch-item">
<span class="switch-label2">Location</span>
<label class="switch2">
<input type="checkbox" id="location-switch" class="grid-switch switch" />
<span class="switcher2 round"></span>
</label>
</div>
<div class="switch-item">
<span class="switch-label2">Tracking</span>
<label class="switch2">
<input type="checkbox" id="tracking-switch" class="grid-switch switch" />
<span class="switcher2 round"></span>
</label>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>