-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprivacy.html
More file actions
333 lines (285 loc) · 12.2 KB
/
privacy.html
File metadata and controls
333 lines (285 loc) · 12.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Pulse-cam Institutional Knowledge Sharing Platform</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #ECEDEE;
background: #000;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.header {
background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
color: white;
text-align: center;
padding: 80px 0;
margin-bottom: 40px;
position: relative;
overflow: hidden;
}
.header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 50% 50%, rgba(240, 30, 33, 0.1) 0%, transparent 70%);
}
.header-content {
position: relative;
z-index: 1;
}
.header h1 {
font-size: 3rem;
margin-bottom: 10px;
font-weight: 700;
background: linear-gradient(45deg, #F01E21, #ff4757);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.header p {
font-size: 1.3rem;
opacity: 0.9;
color: #9BA1A6;
}
.content {
background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
padding: 40px;
border-radius: 20px;
border: 1px solid #333;
margin-bottom: 30px;
position: relative;
overflow: hidden;
}
.content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #F01E21, #ff4757);
}
.content h2 {
color: #ECEDEE;
margin-bottom: 20px;
font-size: 1.8rem;
font-weight: 600;
border-bottom: 2px solid #F01E21;
padding-bottom: 10px;
}
.content h3 {
color: #ECEDEE;
margin: 25px 0 15px 0;
font-size: 1.3rem;
font-weight: 600;
}
.content p {
margin-bottom: 15px;
color: #9BA1A6;
}
.content ul {
margin: 15px 0 15px 20px;
color: #9BA1A6;
}
.content li {
margin-bottom: 8px;
}
.highlight-box {
background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
border-left: 4px solid #F01E21;
padding: 25px;
margin: 20px 0;
border-radius: 15px;
border: 1px solid #333;
}
.highlight-box p {
margin-bottom: 0;
font-weight: 500;
color: #ECEDEE;
}
.contact-section {
background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
padding: 40px;
border-radius: 20px;
border: 1px solid #333;
text-align: center;
position: relative;
overflow: hidden;
}
.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #F01E21, #ff4757);
}
.contact-section h2 {
color: #ECEDEE;
margin-bottom: 20px;
font-weight: 600;
}
.contact-section p {
color: #9BA1A6;
margin-bottom: 20px;
}
.contact-button {
display: inline-block;
background: #F01E21;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(240, 30, 33, 0.3);
}
.contact-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(240, 30, 33, 0.4);
background: #e01a1d;
}
.footer {
text-align: center;
padding: 40px 0;
color: #9BA1A6;
border-top: 1px solid #333;
}
.footer a {
color: #F01E21;
text-decoration: none;
margin: 0 20px;
font-weight: 500;
transition: color 0.3s ease;
}
.footer a:hover {
color: #ff4757;
text-decoration: underline;
}
.last-updated {
background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
padding: 20px;
border-radius: 15px;
margin-bottom: 30px;
text-align: center;
color: #9BA1A6;
border: 1px solid #333;
}
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.content {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<div class="header-content">
<h1>Privacy Policy</h1>
<p>Institutional Data Security & Privacy Protection</p>
</div>
</div>
</div>
<div class="container">
<div class="last-updated">
<strong>Last Updated:</strong> October 21, 2025
</div>
<div class="content">
<div class="highlight-box">
<p><strong>Key Point:</strong> Pulse-cam is designed for institutional knowledge sharing. The application does not collect any information you do not directly share with others. Your videos and content remain secure and private on your device.</p>
</div>
<h2>Information We Collect</h2>
<p>Pulse-cam does not collect information you do not share:</p>
<h3>User Content</h3>
<ul>
<li><strong>Photos or Videos:</strong> You compose and share videos and other content within the app by uploading when you direct the application to do so.</li>
<li><strong>Audio Data:</strong> Voice recordings and audio content captured with your videos but not shared until you choose to do so.</li>
</ul>
<h3>Identifiers</h3>
<ul>
<li>No identifiers are collected. If you choose to share your content, it is done so at your discretion.</li>
</ul>
<h3>Device Permissions</h3>
<ul>
<li><strong>Camera Access:</strong> Required for video recording functionality</li>
<li><strong>Microphone Access:</strong> Required for audio recording with videos</li>
<li><strong>Photo Library Access:</strong> Required for importing existing videos from your device</li>
<li><strong>Device Storage:</strong> Required for saving your recorded videos locally</li>
</ul>
<h3>Local Data Storage</h3>
<ul>
<li><strong>Video Files:</strong> Your recorded videos are stored locally on your device</li>
<li><strong>Draft Information:</strong> Recording segments and settings are saved locally</li>
<li><strong>App Preferences:</strong> Your duration settings and app configuration</li>
<li><strong>Undo/Redo Data:</strong> Segment history for editing functionality</li>
</ul>
<h2>How We Use Your Information</h2>
<p>We do not use your information for any purpose other than providing the app's core functionality.</p>
<h2>Data Storage and Security</h2>
<p><strong>Current Storage:</strong> All your videos and data are stored exclusively on your device. We do not upload, store, or access your personal videos on other servers until you choose to share them.</p>
<p><strong>Data Encryption:</strong> Your local data is protected by your device's built-in security features. Any future backend integration will use industry-standard encryption.</p>
<h2>Third-Party Services</h2>
<p>Pulse-cam does not currently share your data with any third-party services. We do not use advertising networks or external data processing services. Any future backend integration will be designed specifically for institutional use with appropriate security measures.</p>
<h2>Your Rights and Control</h2>
<p>You have complete control over your data and institutional content:</p>
<ul>
<li><strong>Delete Data:</strong> You can delete the app at any time to remove all stored data</li>
<li><strong>Manage Permissions:</strong> You can revoke camera, microphone, or photo library access in your device settings</li>
<li><strong>Export Videos:</strong> You can export your videos using your device's sharing features</li>
<li><strong>Institutional Control:</strong> When backend features are available, you'll control what content is shared within your organization</li>
<li><strong>Data Portability:</strong> All your content remains accessible and can be exported at any time</li>
</ul>
<h2>Institutional Use & Compliance</h2>
<p>Pulse-cam is designed for institutional knowledge sharing and training. Organizations using Pulse-cam should:</p>
<ul>
<li><strong>Establish Policies:</strong> Create clear policies for video content creation and sharing</li>
<li><strong>Data Governance:</strong> Ensure compliance with institutional data policies and regulations</li>
<li><strong>Access Control:</strong> Manage who can create and access institutional content</li>
<li><strong>Backup Strategy:</strong> Implement appropriate backup procedures for important content</li>
<li><strong>Compliance Monitoring:</strong> Regular audits of content creation and sharing practices</li>
<li><strong>Training Programs:</strong> Educate staff on proper use of institutional knowledge sharing tools</li>
</ul>
<h2>Changes to This Privacy Policy</h2>
<p>We may update this privacy policy from time to time. Any changes will be posted on this page with an updated "Last Updated" date. We encourage you to review this privacy policy periodically.</p>
<h2>Contact Us</h2>
<p>If you have any questions about this privacy policy or how we handle your data, please contact us:</p>
<ul>
<li><strong>Support:</strong>support@mieweb.com</li>
</ul>
</div>
<div class="contact-section">
<h2>Questions About Privacy?</h2>
<p>We're committed to protecting your privacy. If you have any questions, we're here to help!</p>
<a href="mailto:support@mieweb.com" class="contact-button">Contact Us</a>
</div>
</div>
<div class="footer">
<div class="container">
<a href="index.html">Home</a>
<a href="support.html">Support</a>
<a href="mailto:support@mieweb.com">Contact</a>
</div>
</div>
</body>
</html>