-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.html
More file actions
49 lines (46 loc) · 1.41 KB
/
settings.html
File metadata and controls
49 lines (46 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="new-popup.css" />
<link rel="stylesheet" href="settings.css" />
</head>
<body>
<nav>
<div class="logo">
<img src="assets/logo.png" alt="logo" id="logo-img" />
</div>
<div class="menu">
<a href="popup.html">
<img src="assets/home.png" alt="home" />
</a>
<a href="spinner.html">
<img src="assets/spinner.png" alt="spinner" />
</a>
<a href="shop.html">
<img src="assets/shop.png" alt="shop" />
</a>
<a href="settings.html">
<img src="assets/settings.png" alt="setting" />
</a>
</div>
<div class="coin">
<img src="assets/coin.png" alt="coin" />
<label id="coin-value">loading ...</label>
</div>
</nav>
<div class="switch-container">
<h1 class="settings-text">Dark mode</h1>
<label class="switch">
<input type="checkbox" id="toggle" />
<span class="slider round"></span>
</label>
</div>
<div id="reset-storage" class="btn">Reset storage</div>
<script src="components/helpers/promises.js"></script>
<script src="components/helpers/state.js"></script>
<script src="components/helpers/coins.js"></script>
<script src="popup.js"></script>
<script src="components.js"></script>
<script src="settings.js"></script>
</body>
</html>