-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
155 lines (136 loc) · 5.37 KB
/
privacy-policy.html
File metadata and controls
155 lines (136 loc) · 5.37 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Padelicano</title>
<style>
:root {
--theme-blue: rgb(0, 128, 230);
--background: #f9f9f9;
--text: #333;
--border: #ddd;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text);
background-color: var(--background);
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 30px;
}
h1 {
color: var(--theme-blue);
}
h2 {
color: var(--theme-blue);
border-bottom: 1px solid var(--border);
padding-bottom: 10px;
margin-top: 30px;
}
.updated-date {
color: #777;
font-style: italic;
margin-bottom: 20px;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
.contact {
background-color: white;
border: 1px solid var(--border);
border-radius: 8px;
padding: 20px;
margin-top: 30px;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #222;
--text: #f0f0f0;
--border: #444;
}
.contact {
background-color: #333;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Privacy Policy for Padelicano</h1>
<div class="updated-date">Last Updated: May 5, 2025</div>
</header>
<section>
<h2>Introduction</h2>
<p>Welcome to Padelicano. We respect your privacy and want to be transparent about our approach to data handling. This Privacy Policy explains how your information is managed when you use our Padelicano application ("App").</p>
<p>Please read this Privacy Policy carefully. By using the Padelicano App, you consent to the data practices described in this statement.</p>
</section>
<section>
<h2>Data Storage and Collection</h2>
<p><strong>Padelicano does not collect any of your information.</strong> All data is stored locally on your device only.</p>
<p>The types of information stored locally include:</p>
<ul>
<li>Player names, gender, and profiles you create</li>
<li>Tournament data, including match results and scores</li>
<li>Tournament configurations and settings</li>
</ul>
<p>This data is used solely within the app to manage your tournaments and is never transmitted to us or any third parties.</p>
</section>
<section>
<h2>Local Data Usage</h2>
<p>The information stored locally on your device is used only for:</p>
<ul>
<li>Managing tournaments and tracking scores</li>
<li>Creating and maintaining player profiles</li>
<li>Generating leaderboards and statistics</li>
<li>Improving your experience with the Padelicano App</li>
</ul>
</section>
<section>
<h2>Data Security</h2>
<p>Since all data is stored locally on your device:</p>
<ul>
<li>Your data security depends on your device's security settings</li>
<li>Data backup is your responsibility through your device's backup mechanisms</li>
<li>Data will remain on your device until you uninstall the app or clear the app data</li>
</ul>
</section>
<section>
<h2>User Control Over Data</h2>
<p>You have complete control over your data:</p>
<ul>
<li>You can delete tournaments, players, or other data directly within the app</li>
<li>Uninstalling the app will remove all associated data from your device</li>
<li>You can use your device's settings to clear the app's data</li>
</ul>
</section>
<section>
<h2>Third-Party Services</h2>
<p>Padelicano does not use third-party services that collect your information. All functionality is handled locally on your device.</p>
</section>
<section>
<h2>Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "Last Updated" date.</p>
</section>
<section class="contact">
<h2>Contact Information</h2>
<p>If you have any questions or suggestions about our Privacy Policy, please contact us at:</p>
<p>Email: rayoroderik@gmail.com</p>
<p>Thank you for trusting Padelicano with your padel tournament management needs.</p>
</section>
</div>
</body>
</html>