-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (106 loc) · 4.8 KB
/
index.html
File metadata and controls
120 lines (106 loc) · 4.8 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- BEGIN FAVICON NIGHTMARE -->
<!-- Compliments of https://realfavicongenerator.net -->
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicons/favicon-16x16.png">
<link rel="manifest" href="/images/favicons/site.webmanifest">
<link rel="mask-icon" href="/images/favicons/safari-pinned-tab.svg" color="#5cd1ff">
<link rel="shortcut icon" href="/images/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#5cd1ff">
<meta name="msapplication-config" content="/images/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- END FAVICON NIGHTMARE -->
<!-- Leaflet -->
<link rel="stylesheet" href="/css/leaflet-v1.9.4.css" />
<script src="/js/leaflet-v1.9.4.js"></script>
<!-- Maplibre GL -->
<link href="/css/maplibre-gl-v5.5.0.css" rel="stylesheet" />
<script src="/js/maplibre-gl-v5.5.0.js"></script>
<!-- Maplibre GL Leaflet -->
<script src="/js/leaflet-maplibre-gl-v0.1.0.js"></script>
<title>Track location</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<link href="./css/styles.css" rel="stylesheet" />
</head>
<body>
<main>
<div class="wrapper">
<header>
<div>
<a href="https://www.zood.xyz"><img class="logo" alt="zood" src="images/zood-logo.svg"
width="73"></a>
<p class="logo-tagline">The privacy company</p>
</div>
</header>
<div id="map"></div>
</div>
</main>
<footer>
<div class="address-box">
<div class="heading">
<h2>
<span class="username" id="username">…</span>
<span id="compass" class="compass"><img src="images/navigation.svg"></span>
</h2>
</div>
<div class="subheading">
<span id="battery-icon" class="battery"></span>
<div id="battery-power" class="battery-power">…</div>
<img id="transportation-mode" class="transportation-mode" src="">
<div id="update-time" class="time">…</div>
</div>
<p id="address">…</p>
</div>
<div class="info">
<h1>Connect with <span class="username" id="username">…</span> in Zood</h1>
<p class="desc">By using Zood Location the device <span class="username">…</span> is using safely shares its
location. The application
is free and enables you to keep track of your family and friends in a secure and easy way.</p>
<h2>Download <img src="images/location_icon.svg" class="inline-svg"> Zood Location and safely share your
location.</h2>
<div class="download-btns">
<a href="https://play.google.com/apps/testing/xyz.zood.george"><img class="download-btn"
alt="download on google play" src="images/gplay-badge.svg"></a>
<!-- <a href="https://testflight.apple.com/join/ySeXo9RA"><img class="download-btn"
alt="download on apple store" src="images/app-store-badge.svg"></a> -->
</div>
</div>
<section class='privacy-policy'>
<div class="container">
<h5>Privacy Policy</h5>
<p>We take your privacy very seriously. We take it so seriously that there's not much to put in our
policy. In short, we don't track anything you do on this website. No analytics, no hidden pixels, no
tracking cookies, no beacons. Nothing. Nada. Zip. Zero. If you have any questions, please
<a href="https:/www.zood.xyz/contact">contact us</a>.
</p>
</div>
</section>
<section class="copyright">
<div class="container">
<ul>
<li>© 2025 Zood</li>
</ul>
</div>
</section>
</footer>
<script>
console.log("window.sodium setup");
window.sodium = {
onload: function () {
console.log("sodium initialized");
run();
}
};
</script>
<script async src="./libs/sodium.0.7.15.js"></script>
<script src="js/zood.js"></script>
<script src="js/locationiq.js"></script>
<script src="js/zdtime.js"></script>
<script src="js/lucille.js"></script>
</body>
</html>