-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
121 lines (102 loc) · 2.35 KB
/
privacy.html
File metadata and controls
121 lines (102 loc) · 2.35 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AUGENBLICKE – Datenschutz & Einwilligung</title>
<style>
body{
margin:0;
min-height:100vh;
font-family:system-ui,sans-serif;
background:radial-gradient(circle at 30% 40%, #0b1223, #05070f 80%);
color:#eaeaea;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:1.5rem;
}
h1{
color:#8cf;
text-shadow:0 0 12px #68bfff;
margin-bottom:1rem;
}
.box{
max-width:720px;
background:rgba(10,15,30,0.85);
border:1px solid rgba(140,200,255,0.25);
border-radius:12px;
padding:1.5rem 1.8rem;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}
p{
line-height:1.6;
opacity:.9;
}
ul{
text-align:left;
margin:1rem auto;
max-width:560px;
}
li{
margin-bottom:.6rem;
}
button{
margin-top:1.5rem;
padding:.7rem 1.6rem;
font-size:1rem;
border-radius:30px;
border:none;
cursor:pointer;
background:linear-gradient(90deg,#6fdcff,#b6f3ff);
color:#002;
font-weight:600;
box-shadow:0 0 15px rgba(140,220,255,.6);
}
button:hover{
filter:brightness(1.05);
}
footer{
margin-top:1.5rem;
font-size:.8rem;
opacity:.6;
}
</style>
</head>
<body>
<div class="box">
<h1>👁️ AUGENBLICKE</h1>
<p>
Diese Seite gehört zum Projekt <b>„Bibliothek der Anfänge“</b>
im Repository <b>Aurion_the_project</b>.
</p>
<p>
Beim Betreten der Augenblick-Bibliothek können kamerabasierte
Technologien eingesetzt werden, um Blickbewegungen zu erkennen.
</p>
<ul>
<li>📷 Die Kamera wird <b>nur lokal im Browser</b> verwendet</li>
<li>🔒 Es werden <b>keine Bilder, Videos oder biometrischen Daten gespeichert</b></li>
<li>🌐 Es findet <b>keine Übertragung an Server</b> statt</li>
<li>🧠 Die Nutzung dient ausschließlich <b>Training & Interaktion</b></li>
</ul>
<p>
Mit dem Fortfahren erklärst du dich damit einverstanden,
diese Funktionen bewusst zu nutzen.
</p>
<button onclick="acceptPrivacy()">Einverstanden & weiter</button>
</div>
<footer>
© Aurion – AUGENBLICKE<br>
Diese Seite speichert keine persönlichen Daten.
</footer>
<script>
function acceptPrivacy(){
localStorage.setItem("aurion_privacy_ok","1");
location.href="bibliothek_aug.html";
}
</script>
</body>
</html>