-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
176 lines (150 loc) · 5.58 KB
/
Copy pathprivacy.html
File metadata and controls
176 lines (150 loc) · 5.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - PiBot Web Installer</title>
<link href="https://www.pibot.com/image/catalog/pibot-ico-100x100.png" rel="icon" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}
.container {
background: white;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 800px;
margin: 0 auto;
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
text-align: center;
}
.header h1 {
font-size: 2em;
margin-bottom: 10px;
}
.header p {
opacity: 0.9;
}
.content {
padding: 40px;
line-height: 1.8;
color: #333;
}
.content h2 {
color: #667eea;
margin: 30px 0 15px 0;
font-size: 1.3em;
}
.content h2:first-child {
margin-top: 0;
}
.content p {
margin-bottom: 15px;
}
.content ul {
margin: 15px 0 15px 30px;
}
.content li {
margin-bottom: 8px;
}
.highlight-box {
background: #d4edda;
border-left: 4px solid #28a745;
padding: 15px 20px;
margin: 20px 0;
border-radius: 0 8px 8px 0;
}
.back-link {
display: inline-block;
margin-top: 30px;
color: #667eea;
text-decoration: none;
font-weight: 500;
}
.back-link:hover {
text-decoration: underline;
}
.footer {
background: #f5f5f5;
padding: 20px;
text-align: center;
color: #666;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>🔒 Privacy Policy</h1>
<p>PiBot Web Installer</p>
</div>
<div class="content">
<p><strong>Last updated:</strong> December 2024</p>
<div class="highlight-box">
<strong>✅ Privacy First:</strong> This web installer does not collect, store, or transmit any data.
Everything happens locally in your browser.
</div>
<h2>Overview</h2>
<p>
The PiBot Web Installer is a static web application that runs entirely in your browser.
We are committed to protecting your privacy and have designed this tool to operate
without collecting any personal information.
</p>
<h2>Information We Collect</h2>
<p><strong>None.</strong> This installer:</p>
<ul>
<li>Does not collect any personal information</li>
<li>Does not use cookies or tracking</li>
<li>Does not store any data on servers</li>
<li>Does not log flash attempts or errors</li>
<li>Does not transmit any information to third parties</li>
</ul>
<h2>How It Works</h2>
<p>
The firmware flashing process happens entirely within your browser using the Web Serial API.
Your browser communicates directly with your Pibot device over USB. No data passes through
our servers or any third-party services.
</p>
<h2>Local Storage</h2>
<p>
The only data stored locally is your language preference, saved in your browser's
localStorage. This data never leaves your device and can be cleared at any time
through your browser settings.
</p>
<h2>Third-Party Services</h2>
<p>
This installer uses the open-source ESPTool.js library, which is hosted locally
alongside the installer. No external CDN or third-party services are loaded when using this tool.
</p>
<h2>Open Source</h2>
<p>
This project is open source. You can review the complete source code at:
<br><a href="https://github.com/PiBot-Electronics/PiBot-CNC-Pendant">https://github.com/PiBot-Electronics/PiBot-CNC-Pendant</a>
</p>
<h2>Contact</h2>
<p>
If you have questions about this Privacy Policy, please visit:
<br><a href="https://github.com/PiBot-Electronics/pibot-webinstaller/issues">GitHub Issues</a>
</p>
<a href="index.html" class="back-link">← Back to PiBot Web Installer</a>
</div>
<div class="footer">
© 2024 PiBot. Open source project under LGPL v3 license.
</div>
</div>
</body>
</html>