-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
71 lines (64 loc) · 2.55 KB
/
Copy pathprivacy.html
File metadata and controls
71 lines (64 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrackIt - Privacy Policy</title>
<link rel="stylesheet" href="privacy.css">
</head>
<body>
<div class="container">
<header>
<h1>TrackIt Privacy Policy</h1>
<p class="last-updated">Last updated: March 2024</p>
</header>
<main>
<section>
<h2>Introduction</h2>
<p>Welcome to TrackIt. We respect your privacy and are committed to protecting your personal data. This privacy policy will inform you about how we look after your personal data when you use our app and tell you about your privacy rights.</p>
</section>
<section>
<h2>Data We Collect</h2>
<p>We collect and process the following types of data:</p>
<ul>
<li>Health and fitness data (with your permission)</li>
<li>Device information</li>
<li>Usage statistics</li>
</ul>
</section>
<section>
<h2>How We Use Your Data</h2>
<p>We use your data to:</p>
<ul>
<li>Provide and improve our services</li>
<li>Personalize your experience</li>
<li>Analyze app performance</li>
<li>Ensure app security</li>
</ul>
</section>
<section>
<h2>Data Security</h2>
<p>We implement appropriate security measures to protect your personal data. Your data is stored securely and we regularly review our security practices.</p>
</section>
<section>
<h2>Your Rights</h2>
<p>You have the right to:</p>
<ul>
<li>Access your personal data</li>
<li>Correct inaccurate data</li>
<li>Request deletion of your data</li>
<li>Object to data processing</li>
</ul>
</section>
<section>
<h2>Contact Us</h2>
<p>If you have any questions about this privacy policy or our data practices, please contact us at:</p>
<p class="contact">support@trackit.app</p>
</section>
</main>
<footer>
<p>© 2024 TrackIt. All rights reserved.</p>
</footer>
</div>
</body>
</html>