-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathprivacy.html
58 lines (55 loc) · 2.35 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
57
58
<script>
function get(url){
$('#loadingDiv').show();
$('#msg').html("")
$.get(url, function(data) {
$('#msg').html(data);
$('#loadingDiv').hide();
}).done(function(data) {
}).fail(function(data) {
alert("Failed:" + JSON.serialize(data));
})
}
var loading = $('#loadingDiv').hide();
$(document).ready(function() {
$('#loadingDiv').hide();
});
</script>
<div class="container">
<div>
<h4 class="display-4"> Privacy Checkup <a href="#" style="float:right; font-size: 20px" onclick="close_window('close the privacy checkup?');return false;">close the privacy checkup</a>
</h4>
<h3>Android</h3>
<img src="/webstatic/images/android.resiz.png">
<br><br>
<div class="display-4">
{% for k, v in {"account": "Account", "sync": "Accounts and Sync", "backup": "Backup account", "gmap": "Google Map Sharing", "gphotos": "Google Photos Sharing"}.items() %}
<button class="btn btn-primary mx-2" onclick="get('/privacy/android/{{ k }}')" value="{{ k }}">{{ v | title }}</button>
{% endfor %}
<button class="btn btn-secondary mx-2" onclick="get('/privacy/android/screenshot')" value="screenshot">Screenshot</button>
</div>
<div class="jumbotron" id="msg">
</div>
<br><br>
<div id="loadingDiv" align="center"><img src="{{ url_for('static', filename='images/waiting.gif') }}"/></div>
<br><br>
<h3>iOS (iPhone/iPad)</h3>
<img src="/webstatic/images/apple.resized.png">
<br><br>
<div class="jumbotron">
Please go to
<li> <code>Settings</code> →
<ul>
<li><code>"Your Name"</code> → Check the email address at the top of the screen. </li>
<li><code>Privacy</code> → <code>Location Services</code> →
<ul>
<li> <code>Share My Location</code> → Check whith whom you are sharing your location. </li>
<li> <code>System Services</code> → <code>Significant Locations</code> → (Turn this always off.)</li>
</ul>
</li>
</ul>
</li>
<li> Check the location sharing in <code>Find my Friends</code> app.</li>
</div>
</div>
</div>