-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
56 lines (50 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<title>Privacy Policy - Pyro Client</title>
<link rel="stylesheet" href="res/style.css"/>
</head>
<body>
<div id="view">
<div id="headerbox1" class="center">
<div id="headerbox2">
<a href="index.html"><img src="res/logo_text.png"/></a>
<div id="header">
<a href="index.html"><h2>Home</h2></a>
<a href="login.html"><h2>Log in</h2></a>
</div>
</div>
</div>
<div class="center">
<div style="max-width: 700px; display: block;">
<div class="dialog" style="text-align: left;">
<h1 style="text-align: center;">Privacy Policy</h1>
<h3>Cookies</h3>
<ul>
<li>When logged in, an account cookie is stored</li>
<li>Cloudflare may store cookies for protection from bot attacks</li>
</ul>
<h3>Accounts</h3>
<p>When you make an account we collect your username and password.</p>
<p>When you buy a license we collect a payment identifier that links to your purchase through stripe. Though we do not store this information, stripe shows us</p>
<ul>
<li>Your name</li>
<li>Your address</li>
<li>Your email</li>
<li>The last four digits of your credit card number</li>
</ul>
<p>When running the modification, a unique identifer for your computer is generated. This identifier is hashed.</p>
<br/>
<p>No other information is collected or stored</p>
</div>
</div>
</div>
<div style="margin-top: auto"></div>
<hr style="width: 100%"/>
<div id="footer">
<a href="terms.html">Terms of Service</a>
<a href="privacy.html">Privacy Policy</a>
</div>
</div>
</body>
</html>