LordXido commited on
Commit
ac473af
·
verified ·
1 Parent(s): a6427f8

Delete index.html

Browse files
Files changed (1) hide show
  1. index.html +0 -93
index.html DELETED
@@ -1,93 +0,0 @@
1
-
2
- <!DOCTYPE html>
3
- <html lang="en">
4
- <head>
5
- <meta charset="UTF-8" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
7
- <title>Codex ReflexGuard Dashboard</title>
8
- <style>
9
- body {
10
- font-family: 'Segoe UI', sans-serif;
11
- background: #f9f9fb;
12
- margin: 0;
13
- padding: 0;
14
- }
15
- header {
16
- background: #121212;
17
- color: white;
18
- padding: 1rem 2rem;
19
- text-align: center;
20
- }
21
- h1 {
22
- margin: 0;
23
- }
24
- .container {
25
- padding: 2rem;
26
- }
27
- .card {
28
- background: white;
29
- box-shadow: 0 2px 6px rgba(0,0,0,0.1);
30
- border-radius: 8px;
31
- padding: 1.5rem;
32
- margin-bottom: 1.5rem;
33
- }
34
- .card h2 {
35
- margin-top: 0;
36
- }
37
- button {
38
- background: #4B8DF8;
39
- color: white;
40
- border: none;
41
- padding: 0.8rem 1.2rem;
42
- font-size: 1rem;
43
- border-radius: 5px;
44
- cursor: pointer;
45
- }
46
- button:hover {
47
- background: #3a6fd0;
48
- }
49
- .log {
50
- background: #eaeaea;
51
- padding: 1rem;
52
- border-radius: 5px;
53
- height: 180px;
54
- overflow-y: auto;
55
- font-family: monospace;
56
- }
57
- </style>
58
- </head>
59
- <body>
60
- <header>
61
- <h1>🛡️ Codex ReflexGuard Dashboard</h1>
62
- <p>Live Reflex Intelligence System (WASM + Python Hooks)</p>
63
- </header>
64
- <div class="container">
65
- <div class="card">
66
- <h2>Run Reflex Simulation</h2>
67
- <p>Trigger the ReflexGuard override logic using embedded runtime hooks.</p>
68
- <button onclick="runSimulation()">Run Reflex Check</button>
69
- </div>
70
-
71
- <div class="card">
72
- <h2>System Log</h2>
73
- <div class="log" id="log">
74
- [ReflexGuard]: Ready and monitoring system state...
75
- </div>
76
- </div>
77
- </div>
78
-
79
- <script>
80
- async function runSimulation() {
81
- const log = document.getElementById('log');
82
- log.innerHTML += '\n[Sensor]: Scanning state invariants...';
83
- await new Promise(resolve => setTimeout(resolve, 800));
84
- log.innerHTML += '\n[WASM Hook]: anomalyScore = 0.91';
85
- await new Promise(resolve => setTimeout(resolve, 600));
86
- log.innerHTML += '\n[Python Logic]: Action → HALT issued (risk > threshold)';
87
- await new Promise(resolve => setTimeout(resolve, 500));
88
- log.innerHTML += '\n[Ω-Memory]: Reflex pattern stored in lattice log.';
89
- log.scrollTop = log.scrollHeight;
90
- }
91
- </script>
92
- </body>
93
- </html>