-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
38 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Privacy Policy</title>
</head>
<body>
<nav class="nav">
<a href="index.html"><h1>InstaCapture</h1></a>
<a class="logout" href="#" onclick="logout()">Logout</a>
<fb:login-button
class="fb-btn"
scope="public_profile,email,user_birthday,user_posts,pages_read_user_content"
onlogin="checkLoginState();"
>
</fb:login-button>
<a href="index.html">Home</a>
</nav>
<div class="main-content">
<p class="privacy-text">
This app does not collect any of your data, before or after you log in
to Facebook.
<br />
It is merely a test app designed as a proof of concept to display some
basic data back to yourself, such as posts and comments.
<br />
The codebase:
<a href="https://github.com/aloten/InstaCapture" target="_blank"
>InstaCapture Github Repository</a
>
</p>
</div>
</body>
</html>