-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookie-policy.html
151 lines (122 loc) · 3.6 KB
/
cookie-policy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cookie message - Communicator</title>
<style>
.js_enabled #cookie-message {
display: none;
}
body {
margin: 0;
font-family: sans-serif;
}
#content {
margin: 1em;
}
#cookie-message {
background-color: #d5e6ed;
color: #662d91;
margin: 0 auto;
padding: 1em;
}
table {
border-collapse: collapse;
}
table thead tr {
border-bottom: 1px solid #444;
}
table tbody tr {
border-bottom: 1px solid #777;
}
table tbody tr:nth-last-child(1) {
border: none;
}
table thead th {
text-align: left;
font-weight: bold;
}
table th:nth-child(1) {
min-width: 7rem;
}
table th {
padding: 0.8rem 0.8rem 0.4rem 0;
vertical-align: top;
}
table td {
padding: 0.8rem 0.8rem 0.8rem 0;
vertical-align: top;
}
table + h3 {
margin-top: 1.25rem;
}
</style>
</head>
<body>
<script>
// Detect JS support
document.body.className = document.body.className + " js_enabled";
</script>
<div id="cookie-message" data-cookie-expiry="60">
<p>
Communicator uses cookies to ensure we give you the best experience on our website.
<a href="cookie-policy.html" title="View our Cookie Policy">Find out more about cookies</a>
</p>
</div>
<div id="content">
<h1>Cookie Policy</h1>
<h2>Cookies</h2>
<p>A cookie is a small text file which is automatically saved on your computer when you visit our website and is used to
help track activity across a website. Communicator uses cookies on our website for the following purposes:</p>
<h3>Google Analytics</h3>
<p>We use Google Analytics to help provide anonymous web analytics for our website.</p>
<table border="0">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Expiration</th>
</tr>
</thead>
<tbody>
<tr>
<td>_ga</td>
<td>Used to distinguish users</td>
<td>2 years</td>
</tr>
<tr>
<td>_gat</td>
<td>Used to throttle request rate</td>
<td>30 minutes</td>
</tr>
</tbody>
</table>
<h3>Website</h3>
<p>We use cookies to help increase the user experience of this website.</p>
<table border="0">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Expiration</th>
</tr>
</thead>
<tbody>
<tr>
<td>seen-cookie-message</td>
<td>Used to indicate you have seen the cookie message</td>
<td>30 days</td>
</tr>
</tbody>
</table>
<h2>Removing cookies</h2>
<p>If you have any concerns about cookies, or want to remove cookies from your computer, please visit <a href="http://www.allaboutcookies.org/">All About Cookies</a> which explains how to do this.</p>
<h2>Collection of personal information</h2>
<p>If you contact us via a form on our website your personal information will only be used for us to contact you.
No personal data you send us will be disclosed to a third party without your permission.</p>
<p>If you wish us to remove any personal details we hold about you, please email us at <a href="mailto:[email protected]">[email protected]</a></p>
<p><a href="https://communicatormessenger.github.io/">Return to site</a></p>
</div>
<script src="js/cookie-message.js"></script>
</body>
</html>