-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecurity.html
More file actions
60 lines (54 loc) · 2.01 KB
/
security.html
File metadata and controls
60 lines (54 loc) · 2.01 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sicherheitsprüfung - XMenu</title>
<link rel="stylesheet" href="assets/security/styles.css" />
</head>
<body>
<div class="card">
<!-- ── Kopfzeile ── -->
<div class="card-header">
<div class="shield-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2L3 7v6c0 5.25 3.75 10.15 9 11.25C17.25 23.15 21 18.25 21 13V7L12 2z"/>
</svg>
</div>
<div>
<h1>Schnelle Überprüfung</h1>
<p>Bestätige kurz, dass du ein Mensch bist — XMenu</p>
</div>
</div>
<!-- ── Inhalt ── -->
<div class="card-body">
<!-- Fragenbereich -->
<div id="challenges">
<!-- Aktuelle Frage -->
<div id="question-area">
<div class="challenge-question" id="question-text" aria-live="polite"></div>
<div class="choices" id="question-choices" role="group" aria-label="Antwortmöglichkeiten"></div>
<div class="feedback" id="question-feedback" aria-live="assertive"></div>
</div>
</div>
<!-- ── Erfolgsmeldung ── -->
<div id="success-screen">
<div class="success-icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<polyline points="20 6 9 17 4 12"/>
</svg>
</div>
<h2>Überprüfung abgeschlossen</h2>
<p>
Du wirst zu <strong class="redirect-destination"></strong> weitergeleitet…
</p>
<div class="redirect-bar-bg">
<div class="redirect-bar-fill"></div>
</div>
<p class="redirect-note" aria-live="polite">Weiterleitung…</p>
</div>
</div><!-- /.card-body -->
</div><!-- /.card -->
<script src="assets/security/script.js"></script>
</body>
</html>