-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
228 lines (211 loc) · 10.4 KB
/
privacy.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Heart Rate→Privacy</title>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#db2b30">
<link rel="shortcut icon" href="/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#2d2d2d">
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
<meta name="theme-color" content="#2d2d2d">
<!-- For those reading, here's an example of a anonymous usage measurement that's respectful of your privacy. This one helps us figure out how many of our users are privacy-conscious and checking this page, so we can serve you better. We currently use Amplitude (i.e. not an ad company) to help us measure. -->
<script type="text/javascript">
(function(e, t) {
var n = {
_q: [],
_iq: {}
};
var r = t.createElement("script");
r.type = "text/javascript";
r.async = true;
r.src = "https://cdn.amplitude.com/libs/amplitude-4.5.2-min.gz.js";
r.integrity = "sha384-f1maK8oMrCMNEWGGg3Hx3dMTOQBbXr4e1ZIjB/J0TcgJx5UeE0g5S5PM5BbWPe4E";
r.crossOrigin = "anonymous";
r.onload = function() {
e.amplitude.runQueuedFunctions()
};
var i = t.getElementsByTagName("script")[0];
i.parentNode.insertBefore(r, i);
function s(e, t) {
e.prototype[t] = function() {
this._q.push([t].concat(Array.prototype.slice.call(arguments, 0)));
return this
}
}
var d = ["init", "logEvent"];
function v(e) {
function t(t) {
e[t] = function() {
e._q.push([t].concat(Array.prototype.slice.call(arguments, 0)))
}
}
for (var n = 0; n < d.length; n++) {
t(d[n])
}
}
v(n);
n.getInstance = function(e) {
e = (!e || e.length === 0 ? "$default_instance" : e).toLowerCase();
if (!n._iq.hasOwnProperty(e)) {
n._iq[e] = {
_q: []
};
v(n._iq[e])
}
return n._iq[e]
};
e.amplitude = n
})(window, document);
var a = amplitude.getInstance();
var k = "3db74f59a9db3630532afdf4356adebc";
if (location.hostname === "localhost" || location.hostname === "127.0.0.1" || location.hostname === "") {
k = "2565032ed2248c60d88c5d7be9e3148a";
}
a.init(k, null, {includeReferrer: true});
a.logEvent("Privacy Page View");
var isIOS = !!navigator.platform && /iPad|iPhone|iPod/.test(navigator.platform);
var isAndroid = !!navigator.userAgent && /(android)/i.test(navigator.userAgent);
function copyToClipboard(s) {
var el = document.createElement('textarea');
el.value = s;
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
}
if (!isIOS && !isAndroid) {
var head = document.getElementsByTagName('head')[0];
var s = document.createElement('script');
s.src = 'https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js';
s.integrity = 'sha384-L2pyEeut/H3mtgCBaUNw7KWzp5n9+4pDQiExs933/5QfaTh8YStYFFkOzSoXjlTb';
s.crossOrigin = "anonymous";
s.async = true;
head.appendChild(s);
s = document.createElement('script');
s.src = 'https://cdn.jsdelivr.net/npm/[email protected]/umd/index.all.min.js';
s.crossOrigin= "anonymous";
s.async = true;
head.appendChild(s);
document.addEventListener('DOMContentLoaded', function() {
Array.prototype.forEach.call(document.getElementsByTagName('a'), function(a) {
if (a.href.startsWith('mailto:')) {
a.removeAttribute('href');
a.style.cursor = 'pointer';
a.setAttribute('data-tippy', 'Click to copy!');
a.setAttribute('data-tippy-arrow', 'true');
a.setAttribute('data-tippy-followcursor', 'true');
a.setAttribute('data-tippy-delay', '[200,0]');
a.addEventListener('click', function(e) {
copyToClipboard(e.target.innerText);
});
}
});
});
}
function submitFormNoRedirect(form) {
var sendButton = form.getElementsByTagName('button')[0];
var sendButtonInner = sendButton.innerHTML;
sendButton.innerHTML = 'Sending...';
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
sendButton.innerHTML = 'Sent!';
setTimeout(function() {
sendButton.innerHTML = sendButtonInner;
}, 2000);
}
};
xhr.open(form.method, form.action, true);
xhr.send(new FormData(form));
return false;
}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" />
<link href="https://fonts.googleapis.com/css?family=Lato:300i,400" rel="stylesheet">
<style>
body {font-family: 'Lato'}
p.indent {text-indent: 2.5em;}
p {font-style: italic}
p, input, button, textarea {color: white; font-family: 'Lato', sans-serif; font-size: 18px; text-shadow: 0px 0px 1em #111111;}
input, textarea, button {outline-color: #DB2B30;}
input, textarea, button {border-radius: 6px; border-width: 2px; background-color: black; font-size: 12px; border-style: solid}
input, textarea { border-color: rgba(219,43,48, 0.3); height: 2em; padding: 2px 0px 2px 8px}
button {font-weight: 300; color: #D0D0D0; border-color: rgba(219,43,48, 0.4); height: 2.5em; padding: 2px 8px; cursor: pointer}
a {text-decoration: none; color: white}
::selection {background-color:#DB2B30;}
</style>
</head>
<body style="background-color: rgb(32,32,32); margin:0px; padding:20px">
<div style="margin: 0px auto; padding: 40px; max-width: 800px; background-color: rgb(45,45,45); box-shadow: 0px 0px 15px #111111; border-radius: 2px">
<a href="/" style="display: block; width: 100px; margin-bottom:28px; margin-left: auto; margin-right: auto;">
<img src="/heart.svg" style="height:100px; display: block; margin: 0; filter: drop-shadow(0px 0px 15px #111111); ">
</a>
<p>Dear User,</p>
<p class="indent">We don't track you personally, and we don't show you ads. Our focus is on creating great software for you while protecting your privacy.</p>
<p class="indent">To help us make better software for everyone, we do measure anonymously how the product is used. We don't identify you from these usage measurements, nor do we believe we could.</p>
<p class="indent">The only way we'd know who you are is if you contact us—and we love hearing from you! Feel free to reach out at <a href="mailto:[email protected]?subject=Hello,%20Hedron Heart Rate" target="_blank">[email protected]</a> with any questions or feedback on this or anything else.</p>
<p>Sincerely,
<br/>
<span style="font-size: 19px; line-height: 30px">Your friends at <a href="https://hedronvision.com">Hedron Vision</a></span>
<br/><span style="font-size: 16px;">(the makers of <a href="/">Hands Free Heart Rate Monitor <img src="/appIcon.svg" style="height: 1em; vertical-align: text-bottom"> )</a></span>
</p>
<figure style="width:110px; display: block; margin: 0px auto 30px auto; filter: drop-shadow(0px 0px 15px #111111); " >
<!-- If you're reading this, you should consider working with us. Reach out at [email protected]! -->
<object data="/cubeAnimated.svg" type="image/svg+xml" style="height: 110px; background-image: url(/cube.svg); visibility: hidden" onload="
this.style.visibility = '';
var smil = !!document.createElementNS && /SVGAnimate/.test((document.createElementNS('http://www.w3.org/2000/svg', 'animate')).toString());
if (!smil) {
this.data = '';
return;
}
var a = this.contentDocument.children[0];
a.pauseAnimations();
this.timerPause = function() {
setTimeout(this.pause.bind(this), 2983);
};
this.pause = function() {
if (this.mouseIsOver) {
this.timerPause();
} else {
a.pauseAnimations();
}
}
this.style.backgroundImage = null;
this.play = function() {
if (a.animationsPaused()) {
a.setCurrentTime(0);
a.unpauseAnimations();
this.timerPause();
}
};
document.onvisibilitychange = function() {
if (document.visibilityState == 'hidden') {
a.setCurrentTime(0);
} else {
a.pauseAnimations();
}
};
setTimeout(this.play.bind(this), 500);
a.onmousedown = this.onmouseover.bind(this);
a.onmouseup = this.onmouseout.bind(this);"
onmouseover="this.mouseIsOver=true; if (this.play) this.play();"
onmouseout="this.mouseIsOver=false;">
</object>
<figcaption style="color: white; text-align: center; font-variant: small-caps;"><a href="https://hedronvision.com">Hedron Vision</a></figcaption>
</figure>
<p style="font-size: 16px; color:rgb(200,200,200); margin-bottom: 0px">P.S. We may need to update this letter as the product grows. If so, we'll keep it updated right here at heartrate.hedronvision.com/privacy. You've probably noticed that we don't force you to create an account or provide your email—that helps protect your privacy but prevents us from emailing everyone when we make changes. You're always welcome to check back here for updates, and we'll assume you're happy from your continued use of the software.</p>
</div>
<div style="position: fixed; bottom: 0; right: 10px; background-color: rgb(87,17,19); border-top-left-radius: 6px; border-top-right-radius: 6px; filter: drop-shadow(0px 0px 8px #111111); text-align: center" onmouseenter="this.open=true; this.getElementsByTagName('form')[0].style.display = 'inline';" onmouseleave="this.open=false; this.getElementsByTagName('form')[0].style.display = 'none';" onclick="if(this.open) this.onmouseleave(); else this.onmouseenter();">
<img src="/message.svg" style="width: 24px; margin: 6px 6px 1px 6px;">
<form onsubmit="return submitFormNoRedirect(this)" action="https://docs.google.com/forms/d/e/1FAIpQLSdU9F-OxTwt1NxwkgRGXvjVfjF4BUqLiHUDYj3THUujYeAniw/formResponse" method="post" style="display: none" onclick="event.stopPropagation()">
<textarea name="entry.1792109911" placeholder="How can we help?" required style="resize: none; width: 92%; height: 80px"></textarea><br/>
<input type="email" name="entry.1670508223" autocomplete="email" placeholder="Email (optional)">
<button type="submit">Send</button>
</form>
</div>
</body>
</html>