-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
488 lines (416 loc) · 18.5 KB
/
privacy.html
File metadata and controls
488 lines (416 loc) · 18.5 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - SMPLTSK</title>
<meta name="description" content="SMPLTSK Privacy Policy - Learn how we collect, use, and protect your data">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--app-blue: #3B5FE5;
--app-red: #EE4B4B;
--app-green: #4FD14A;
--white: #ffffff;
--light-bg: #fafbfc;
--text-dark: #0f172a;
--text-gray: #475569;
--border-color: #e2e8f0;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--light-bg);
color: var(--text-dark);
line-height: 1.8;
}
nav {
background: var(--white);
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.5rem;
font-weight: 800;
text-decoration: none;
color: var(--text-dark);
}
.logo-icon {
width: 40px;
height: 40px;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
color: var(--text-gray);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--app-blue);
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 3rem 2rem;
}
.header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 2px solid var(--border-color);
}
h1 {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 1rem;
}
.last-updated {
color: var(--text-gray);
font-size: 0.95rem;
}
h2 {
font-size: 1.75rem;
font-weight: 700;
color: var(--text-dark);
margin-top: 2.5rem;
margin-bottom: 1rem;
}
h3 {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-dark);
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
p {
margin-bottom: 1rem;
color: var(--text-gray);
}
ul, ol {
margin-left: 2rem;
margin-bottom: 1rem;
}
li {
margin-bottom: 0.5rem;
color: var(--text-gray);
}
strong {
color: var(--text-dark);
font-weight: 600;
}
.highlight-box {
background: linear-gradient(135deg, rgba(59, 95, 229, 0.05) 0%, rgba(79, 209, 74, 0.05) 100%);
border-left: 4px solid var(--app-blue);
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 0 8px 8px 0;
}
.contact-info {
background: var(--white);
padding: 2rem;
border-radius: 12px;
margin-top: 3rem;
border: 1px solid var(--border-color);
}
footer {
background: var(--white);
border-top: 1px solid var(--border-color);
padding: 2rem 0;
margin-top: 4rem;
text-align: center;
}
footer p {
color: var(--text-gray);
font-size: 0.9rem;
}
footer a {
color: var(--app-blue);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<a href="index.html" class="logo">
<svg class="logo-icon" viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg">
<rect width="70" height="70" rx="14" ry="14" fill="#3B5FE5"/>
<circle cx="35" cy="35" r="29.75" fill="#EE4B4B"/>
<circle cx="35" cy="35" r="22.75" fill="#4FD14A"/>
<text x="35" y="40" text-anchor="middle" font-family="Arial, sans-serif" font-size="45" font-weight="bold" fill="#3B5FE5" dominant-baseline="middle">S</text>
</svg>
<span>SMPLTSK</span>
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="terms-of-service.html">Terms</a>
<a href="contact.html">Contact</a>
</div>
</div>
</nav>
<div class="container">
<div class="header">
<h1>Privacy Policy</h1>
<p class="last-updated">Last Updated: November 8, 2025</p>
</div>
<p>Welcome to SMPLTSK. We respect your privacy and are committed to protecting your personal data. This Privacy Policy explains how we collect, use, share, and protect information when you use our mobile application and services.</p>
<h2>1. Information We Collect</h2>
<h3>1.1 Account Information</h3>
<p><strong>Authentication providers:</strong></p>
<ul>
<li>Google Sign-In (Google account email and profile)</li>
<li>Apple Sign-In (Apple ID email and name)</li>
</ul>
<p><strong>Note:</strong> SMPLTSK does not offer email/password registration. You must use Google or Apple to create an account.</p>
<h3>1.2 Photos and Visual Content</h3>
<ul>
<li>Photos you upload to create tasks</li>
<li>Visual markers (red for incomplete, green for complete) placed on photos</li>
<li>Task descriptions and annotations</li>
</ul>
<h3>1.3 Task and Communication Data</h3>
<ul>
<li>Task batches you create</li>
<li>In-app messages and comments between users</li>
<li>Folder organization (Sent, Received, Mine, Drafts)</li>
<li>Task completion status and history</li>
</ul>
<h3>1.4 Contact Information</h3>
<ul>
<li>Contacts you explicitly import from your device's contact list</li>
<li>We only access contacts you choose to import, not your entire contact list</li>
</ul>
<h3>1.5 Device and Usage Information</h3>
<ul>
<li>Device type, operating system, and version</li>
<li>App version and settings</li>
<li>Usage patterns and feature interactions</li>
<li>Crash reports and error logs</li>
<li>Performance metrics</li>
</ul>
<h2>2. Service Tiers and Data Collection</h2>
<h3>2.1 Free Version</h3>
<p>Free users can create and send 1 image with up to 6 tasks. We collect:</p>
<ul>
<li>Basic account information</li>
<li>Photos and task data (limited to 1 image, 6 tasks)</li>
<li>Usage metrics for the free tier</li>
</ul>
<h3>2.2 Premium Subscription (Monthly: $7.99/month, Annual: $59.99/year, or Lifetime: $149.99 one-time)</h3>
<p>Subscribers get unlimited tasks and images. We collect:</p>
<ul>
<li>All free tier data</li>
<li>Subscription status and payment history (processed by App Store/Play Store/Stripe/RevenueCat)</li>
<li>Extended usage analytics for unlimited features</li>
</ul>
<h2>3. How We Use Firebase</h2>
<p><strong>Server Location:</strong> Your data is stored on Firebase servers located in Sydney, Australia.</p>
<p><strong>Firebase Services We Use:</strong></p>
<p>We utilize the full suite of Firebase services to ensure optimal app performance:</p>
<ul>
<li><strong>Firebase Authentication</strong> - Google and Apple Sign-In</li>
<li><strong>Firebase Cloud Firestore</strong> - Task and user data storage</li>
<li><strong>Firebase Cloud Storage</strong> - Image storage</li>
<li><strong>Firebase Analytics</strong> - Usage patterns and feature adoption</li>
<li><strong>Firebase Crashlytics</strong> - Crash reporting and debugging</li>
<li><strong>Firebase Performance Monitoring</strong> - App speed and responsiveness</li>
<li><strong>Firebase Cloud Messaging</strong> - Push notifications (you grant permission on signup)</li>
<li><strong>Firebase Remote Config</strong> - Feature flags and A/B testing</li>
<li><strong>Firebase App Distribution</strong> - Beta testing</li>
<li><strong>Firebase Test Lab</strong> - Quality assurance</li>
</ul>
<p>All Firebase services comply with Google's privacy standards and our data protection commitments.</p>
<h2>4. SMPLTSK-Specific Features</h2>
<h3>4.1 Photo-Based Task Management</h3>
<ul>
<li>You upload photos which are stored in Firebase Cloud Storage (Sydney)</li>
<li>Visual markers (red for undone, green for done) are stored with each task</li>
<li>Task batches can contain multiple images</li>
</ul>
<h3>4.2 Folder Organization</h3>
<p>Your tasks are automatically organized into folders:</p>
<ul>
<li><strong>Sent:</strong> Tasks you've sent to others</li>
<li><strong>Received:</strong> Tasks others have sent to you</li>
<li><strong>Mine:</strong> Personal tasks for yourself</li>
<li><strong>Drafts:</strong> Unsent/incomplete task batches</li>
</ul>
<p>We store folder metadata to maintain this organization.</p>
<h3>4.3 Contact System</h3>
<ul>
<li>You can import contacts from your device's native contact list</li>
<li>Imported contacts are stored in our system to enable task sharing</li>
<li>We only access contact names and identifiers you explicitly import</li>
</ul>
<h3>4.4 In-App Messaging</h3>
<ul>
<li>Comments and messages between task senders and recipients are stored in Firebase</li>
<li>Messages are linked to specific tasks and retained as long as the task exists</li>
</ul>
<h3>4.5 Task Limitations</h3>
<ul>
<li>Once a task is sent, the photo, markers, and descriptions cannot be edited</li>
<li>Only completion status (red/green) can be changed</li>
<li>This ensures task integrity and clear accountability</li>
</ul>
<h2>5. How We Use Your Information</h2>
<p>We use your information to:</p>
<ul>
<li>Provide and maintain the SMPLTSK service</li>
<li>Enable task creation, sharing, and management</li>
<li>Process and sync your data across devices</li>
<li>Send push notifications about tasks (with your permission)</li>
<li>Improve app performance and user experience</li>
<li>Identify and fix bugs and crashes</li>
<li>Analyze usage patterns to enhance features</li>
<li>Provide customer support</li>
<li>Communicate important updates about the service</li>
</ul>
<h2>6. Information Sharing</h2>
<h3>6.1 With Other Users</h3>
<p>When you send tasks to other users:</p>
<ul>
<li>Recipients see your name, the photo, markers, and task descriptions</li>
<li>Recipients can view in-app messages you send</li>
<li>Task completion status is visible to both sender and recipient</li>
</ul>
<h3>6.2 With Service Providers</h3>
<p>We share data with trusted service providers who help us operate SMPLTSK:</p>
<ul>
<li><strong>Google Firebase</strong> - Hosting, storage, and app infrastructure (servers in Sydney, Australia)</li>
<li><strong>Apple App Store / Google Play Store</strong> - Subscription management and payments</li>
<li><strong>RevenueCat</strong> - Cross-platform subscription management for iOS and Android</li>
<li><strong>Stripe</strong> - Payment processing (web subscriptions, where available)</li>
<li><strong>Google Sign-In / Apple Sign-In</strong> - Authentication services</li>
</ul>
<p>These service providers have access only to the information necessary to perform their functions and are obligated to protect your information.</p>
<h3>6.3 Legal Requirements</h3>
<p>We may disclose information if required by law or to:</p>
<ul>
<li>Comply with legal obligations</li>
<li>Protect our rights and property</li>
<li>Prevent fraud or abuse</li>
<li>Protect user safety</li>
</ul>
<h3>6.4 We Do Not</h3>
<ul>
<li>Sell your personal information to third parties</li>
<li>Display advertisements</li>
<li>Share your data for marketing purposes</li>
</ul>
<h2>7. Data Security</h2>
<p>We implement industry-standard security measures:</p>
<ul>
<li>Encrypted data transmission (HTTPS/SSL)</li>
<li>Secure Firebase authentication and storage</li>
<li>Regular security audits and updates</li>
<li>Access controls and monitoring</li>
</ul>
<p>However, no method of transmission or storage is 100% secure. We cannot guarantee absolute security but continuously work to protect your data.</p>
<h2>8. Data Retention</h2>
<h3>8.1 Active Accounts</h3>
<ul>
<li>We retain your data as long as your account is active</li>
<li>Data includes all tasks, photos, messages, and account information</li>
</ul>
<h3>8.2 After Subscription Cancellation</h3>
<ul>
<li>You maintain full access to all your data</li>
<li>No features are removed</li>
<li>Data remains until you choose to delete it</li>
</ul>
<h3>8.3 Account Deletion</h3>
<ul>
<li>When you delete your account, we begin deletion process immediately</li>
<li>Active data deleted within 30 days</li>
<li>Backup systems cleared within 90 days</li>
<li>See our <a href="data-deletion.html">Data Deletion Policy</a> for full details</li>
</ul>
<h3>8.4 Shared Tasks</h3>
<ul>
<li>If you delete your account, tasks you shared with others remain accessible to recipients</li>
<li>Your name may still appear as the task creator</li>
<li>Delete shared tasks before account deletion if you want them removed</li>
</ul>
<h2>9. Your Rights and Choices</h2>
<h3>9.1 Access and Correction</h3>
<ul>
<li>View and edit your profile information in the app</li>
<li>Review your tasks and data at any time</li>
</ul>
<h3>9.2 Data Export</h3>
<ul>
<li>Request a copy of your data by contacting support@smpltsk.com</li>
</ul>
<h3>9.3 Account Deletion</h3>
<ul>
<li>Delete your account through app settings</li>
<li>Or contact support@smpltsk.com for assistance</li>
</ul>
<h3>9.4 Push Notifications</h3>
<ul>
<li>Manage notification preferences in your device settings</li>
<li>Or within the SMPLTSK app settings</li>
</ul>
<h3>9.5 Contact Import</h3>
<ul>
<li>You control which contacts you import</li>
<li>Delete imported contacts anytime in app settings</li>
</ul>
<h2>10. Children's Privacy</h2>
<p>SMPLTSK is not intended for users under 13 years of age. We do not knowingly collect information from children under 13. If we discover we have collected data from a child under 13, we will delete it immediately.</p>
<h2>11. International Data Transfers</h2>
<p>Your data is stored on Firebase servers in Sydney, Australia. If you access SMPLTSK from outside Australia, your information may be transferred to and processed in Australia. By using SMPLTSK, you consent to this transfer and processing.</p>
<h2>12. Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. When we make changes:</p>
<ul>
<li>We will update the "Last Updated" date</li>
<li>For significant changes, we'll notify you via email or in-app notification</li>
<li>Continued use of SMPLTSK after changes constitutes acceptance</li>
</ul>
<h2>13. Cookie Policy</h2>
<p>For information about cookies on our website, please see our <a href="cookie-policy.html">Cookie Policy</a>.</p>
<div class="contact-info">
<h2>14. Contact Information</h2>
<p><strong>SMPLTSK</strong><br>
ABN: 82591313062<br>
Sydney, Australia<br>
Email: <a href="mailto:support@smpltsk.com">support@smpltsk.com</a><br>
Website: <a href="https://smpltsk.com">https://smpltsk.com</a></p>
<p style="margin-top: 1.5rem;">If you have questions about this Privacy Policy or how we handle your data, please contact us at <a href="mailto:support@smpltsk.com">support@smpltsk.com</a>.</p>
</div>
</div>
<footer>
<div class="container">
<p>© 2025 SMPLTSK. All rights reserved. | <a href="terms-of-service.html">Terms of Service</a> | <a href="data-deletion.html">Data Deletion</a> | <a href="cookie-policy.html">Cookie Policy</a></p>
</div>
</footer>
</body>
</html>