-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathprivacy.html
45 lines (39 loc) · 1.32 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!-- vim: set nowrap ts=2 sw=2: -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>FreeOTP - Privacy Policy</title>
<link rel="stylesheet" type="text/css" href="common.css" media="screen" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="UTF-8" />
<style>
main > h1 {
margin-bottom: 0.5em;
}
main > ul {
margin: 1em 0 0 1em;
}
</style>
</head>
<body>
<header>
<h1><a href="./">FreeOTP</a></h1>
Two-Factor Authentication
</header>
<main>
<h1>Privacy Policy</h1>
<p>FreeOTP does not collect any data from your mobile device.</p>
<ul>
<li>Camera access is used only for scanning OTP QR codes.</li>
<li>Internet access is used only for fetching token icons.</li>
<li>Bluetooth is used only to transfer token codes to remote systems.</li>
<li>Location access is only used when required by Bluetooth (Android).</li>
</ul>
</main>
<footer>
<p>If you believe this policy has been violated in any way, please
<a href="https://github.com/freeotp/freeotp.github.io/issues/new">
file an issue</a>.</p>
</footer>
</body>
</html>