-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (52 loc) · 2.84 KB
/
index.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
<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | GDPR/DSGVO compliant OPT-IN and OPT-OUT</title>
</head>
<body>
<div class="content">
<h1><a target="_blank" href="https://gdpr-info.eu/">GDPR</a>/DSGVO compliant process</h1>
<p>with OPT-IN and OPT-OUT</p>
<input type="button" id="openPrivacyPolicy" value='Einstellungen' onclick='PrivacyPolicy.createPopUp()'></input>
<div style="width:100%;height:400px" id="gmeg_map_canvas"></div><br>
<div style="text-align: left; margin: auto; width: 65%;">
<br>
<table>
<thead>
<th style="min-width:120px">Attribute</th>
<th style="min-width:100px; text-align: right; padding-right: 10px">Type</th>
<th>Description</th>
</thead>
<tr>
<td><code>data-PPName</code></td>
<td style="text-align: right; padding-right: 10px">String</td>
<td>To different the plugins and show the plugin name to the user</td>
</tr>
<tr>
<td><code>data-PPSrc</code></td>
<td style="text-align: right; padding-right: 10px">String</td>
<td>Source of the plugin to load after accepting</td>
</tr>
<tr>
<td><code>data-PPInfo</code></td>
<td style="text-align: right; padding-right: 10px">String</td>
<td>Href to other source(internal or external)</td>
</tr>
<tr>
<td><code>data-PPAllowed</code></td>
<td style="text-align: right; padding-right: 10px">Boolean</td>
<td>Force loading before accepting(No Opt-In needed)</td>
</tr>
</table>
</div>
<p style="text-align: left">1. External scripts: <code><xmp><script src='' data-PPName='Google Maps' data-PPSrc='https://www.googlemaps.de' data-PPInfo='/datenschutz#Google' data-PPAllowed='false'></script></xmp></code></p>
<p style="text-align: left">2. External data: <code><xmp><link data-PPName='Google Fonts' data-PPSrc="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"></xmp></code></p>
<p style="text-align: left">3. Placeholder(Plugins from other subpages): <code><xmp><span data-PPName='Google Maps' data-PPSrc='https://www.googlemaps.de'></span></xmp></code></p>
</div>
<script onload='loadGMaps()' data-PPName='Google Maps' data-PPSrc='https://maps.googleapis.com/maps/api/js?sensor=false' data-PPInfo='https://policies.google.com/privacy' type="text/javascript"></script>
<link defer='true' rel="stylesheet" href="policy.css"></link>
<script defer='true' type="text/javascript" src="PrivacyPolicy.js"></script>
</body>
</html>