This repository was archived by the owner on Nov 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-deletion.html
More file actions
297 lines (256 loc) · 10 KB
/
Copy pathdata-deletion.html
File metadata and controls
297 lines (256 loc) · 10 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Deletion - SMPLTSK</title>
<meta name="description" content="How to delete your data from SMPLTSK">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
.content {
background: white;
border-radius: 20px;
padding: 60px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 30px;
border-bottom: 2px solid #667eea;
}
h1 {
color: #667eea;
font-size: 2.5em;
margin-bottom: 10px;
}
.tagline {
color: #764ba2;
font-size: 1.2em;
font-weight: 600;
}
h2 {
color: #667eea;
margin-top: 40px;
margin-bottom: 20px;
font-size: 1.8em;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
h3 {
color: #764ba2;
margin-top: 25px;
margin-bottom: 15px;
font-size: 1.3em;
}
p {
margin-bottom: 15px;
color: #555;
}
ol, ul {
margin-left: 30px;
margin-bottom: 20px;
}
li {
margin-bottom: 12px;
color: #555;
}
.highlight-box {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
border-left: 4px solid #667eea;
padding: 25px;
margin: 30px 0;
border-radius: 8px;
}
.highlight-box strong {
color: #667eea;
font-size: 1.1em;
}
.warning-box {
background: rgba(255, 152, 0, 0.1);
border-left: 4px solid #ff9800;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
}
.warning-box strong {
color: #ff9800;
}
.method-card {
background: #f8f9fa;
padding: 25px;
border-radius: 10px;
margin: 20px 0;
border-left: 4px solid #667eea;
}
.method-card h3 {
margin-top: 0;
}
strong {
color: #333;
}
.back-link {
display: inline-block;
margin-top: 40px;
padding: 12px 30px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
transition: transform 0.3s ease;
}
.back-link:hover {
transform: translateY(-2px);
}
.contact-info {
background: #f8f9fa;
padding: 20px;
border-radius: 10px;
margin-top: 30px;
}
a {
color: #667eea;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.content {
padding: 30px 20px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="header">
<h1>Data Deletion</h1>
<div class="tagline">Complete Control Over Your Data</div>
</div>
<div class="highlight-box">
<p><strong>Important: SMPLTSK stores ALL data locally on your device.</strong></p>
<p>We do not collect, store, or have access to any of your photos, tasks, or personal information on our servers. Everything stays on your device, which means you have complete control over your data.</p>
</div>
<h2>How to Delete Your Data</h2>
<p>Since all SMPLTSK data is stored locally on your device, deleting your data is simple and immediate. Choose one of the methods below:</p>
<div class="method-card">
<h3>Method 1: Delete Individual Tasks (Partial Deletion)</h3>
<p>To delete specific tasks while keeping the app:</p>
<ol>
<li>Open SMPLTSK on your device</li>
<li>Navigate to the task you want to delete</li>
<li>Tap the delete/trash icon or swipe to delete</li>
<li>Confirm deletion</li>
</ol>
<p><strong>Result:</strong> Selected tasks and their associated photos are permanently deleted from your device.</p>
</div>
<div class="method-card">
<h3>Method 2: Clear All Data Within the App</h3>
<p>To delete all your data while keeping the app installed:</p>
<ol>
<li>Open SMPLTSK</li>
<li>Go to Settings (gear icon)</li>
<li>Tap "Clear All Data" or "Delete All Tasks"</li>
<li>Confirm that you want to delete all data</li>
</ol>
<p><strong>Result:</strong> All tasks, photos, and app data are permanently deleted. The app remains installed and ready to use with a fresh start.</p>
</div>
<div class="method-card">
<h3>Method 3: Uninstall the App (Complete Deletion)</h3>
<p><strong>For iOS:</strong></p>
<ol>
<li>Press and hold the SMPLTSK app icon</li>
<li>Tap "Remove App"</li>
<li>Select "Delete App"</li>
<li>Confirm deletion</li>
</ol>
<p style="margin-top: 20px;"><strong>For Android:</strong></p>
<ol>
<li>Go to Settings → Apps</li>
<li>Find and select SMPLTSK</li>
<li>Tap "Uninstall"</li>
<li>Confirm uninstallation</li>
</ol>
<p><strong>Result:</strong> The app and ALL associated data are permanently removed from your device.</p>
</div>
<div class="warning-box">
<p><strong>⚠️ Important: Data Deletion is Permanent and Immediate</strong></p>
<p>Once you delete data from SMPLTSK:</p>
<ul>
<li>The deletion is <strong>immediate and permanent</strong></li>
<li>There is <strong>no way to recover</strong> deleted data</li>
<li>We cannot help you restore data because we never had access to it</li>
<li>Make sure you've completed important tasks before deleting</li>
</ul>
</div>
<h2>What Gets Deleted?</h2>
<p>When you delete data from SMPLTSK, the following is permanently removed:</p>
<ul>
<li>All task photos you've captured</li>
<li>All markers and annotations on photos</li>
<li>All notes and comments you've added</li>
<li>Task organization and categories</li>
<li>App settings and preferences</li>
</ul>
<h2>What About Backups?</h2>
<p>If you have device backups enabled (iCloud for iOS or Google Drive for Android):</p>
<ul>
<li>SMPLTSK data may be included in your device backups</li>
<li>To ensure complete deletion, you may need to delete old device backups</li>
<li>Consult your device's backup settings for more information</li>
</ul>
<h2>We Never Had Your Data</h2>
<div class="highlight-box">
<p><strong>Privacy by Design</strong></p>
<p>SMPLTSK was built with privacy as a core principle. Because all data stays on your device:</p>
<ul style="margin-top: 15px;">
<li>We never collected your data in the first place</li>
<li>We cannot access your photos or tasks</li>
<li>There are no servers storing your information</li>
<li>You don't need to request data deletion from us</li>
<li>You have complete, immediate control</li>
</ul>
</div>
<h2>Need Help?</h2>
<p>If you have questions about data deletion or privacy:</p>
<div class="contact-info">
<p><strong>Privacy Questions:</strong> <a href="mailto:privacy@smpltsk.com">privacy@smpltsk.com</a></p>
<p><strong>General Support:</strong> <a href="mailto:support@smpltsk.com">support@smpltsk.com</a></p>
<p><strong>More Information:</strong> <a href="privacy.html">Privacy Policy</a> | <a href="support.html">Support Page</a></p>
</div>
<div class="highlight-box" style="margin-top: 50px;">
<p style="text-align: center; font-size: 1.1em; margin-bottom: 0;">
<strong>Your data. Your device. Your control.</strong><br>
<em style="color: #764ba2; margin-top: 10px; display: block;">It really should be a SMPLTSK.</em>
</p>
</div>
<a href="index.html" class="back-link">← Back to Home</a>
</div>
</div>
</body>
</html>