-
Notifications
You must be signed in to change notification settings - Fork 7
/
privacy.html
55 lines (51 loc) · 2.38 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
---
Title: "Privacy"
heading: "Understanding CoEpi’s privacy model"
description: "CoEpi takes a privacy-first approach: users are anonymous and opt-in to ANY sharing of data beyond their local device."
pricing_table:
- name: Data on your device
color: "#6a98de"
features:
- text: "By default, data is only stored on your device:"
highlight: false
- text: If you enable Bluetooth, you will be able to track interactions with other Bluetooth devices.
highlight: false
- text: If you enable GPS permission, you will see location data.
highlight: false
- text: If you log symptoms, you can edit and review your symptoms locally.
highlight: false
- text: In future versions, you will also be able to add symptoms for family members (e.g. children).
highlight: false
call_to_action:
link: /faq
text: See other FAQ about how CoEpi works
- name: Data shared to the CoEpi server
color: "#4182e4"
features:
- text: "Data is ONLY shared to the server when you opt in to do so:"
highlight: false
- text: Data sent to the server, if you opt in, only includes the anonymized record of any Bluetooth devices your device saw, and the symptom list, if you reported any symptoms.
highlight: false
- text: You may choose to have the server alert your close interactions about the anonymized symptom list you are sharing.
highlight: false
- text: In the future, you can also opt in to have your anonymized symptom list shared in a database for public health officials to use.
highlight: false
call_to_action:
link: https://github.com/Co-Epi/CEN
text: See more details about the CoEpi protocol on Github
---
<div class="plans">
{% for plan in page.pricing_table %}
<ul class="plan">
<li style="background: {{ plan.color }}">
<h3>{{ plan.name }}</h3>
</li>
{% for feature in plan.features %}
<li {% if feature.highlight %} class="highlighted"{% endif %}>{{ feature.text }}</li>
{% endfor %}
{% if plan.call_to_action %}
<li class="pricing-cta"><div class="button"><a style="background: {{ plan.color }}" href="{{ plan.call_to_action.link }}">{{ plan.call_to_action.text }} →</a></div></li>
{% endif %}
</ul>
{% endfor %}
</div>