LordXido commited on
Commit
6f8743c
·
verified ·
1 Parent(s): 918c5fc

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +20 -19
index.html CHANGED
@@ -1,28 +1,29 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
- <title>🛡️ Codex ReflexGuard</title>
7
- <link rel="stylesheet" href="style.css" />
8
  </head>
9
  <body>
10
- <header>
11
- <h1>🛡️ Codex ReflexGuard Dashboard</h1>
12
- <p>Live Reflex Intelligence System (WASM + Embedded Hooks)</p>
13
- <button onclick="launchReflex()">🚀 Launch Demo</button>
14
- </header>
15
 
16
- <section>
17
- <h2>🧠 System Log</h2>
18
- <pre id="logWindow">[ReflexGuard]: Initializing reflex memory...</pre>
19
- </section>
 
 
20
 
21
- <script>
22
- function launchReflex() {
23
- document.getElementById("logWindow").textContent +=
24
- "\n[ReflexGuard]: Anomaly detected! Triggering override...\n[WASM Hook]: HALT_SIGNAL issued.";
25
- }
26
- </script>
 
27
  </body>
28
  </html>
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <title>Codex ReflexGuard vΩΞ</title>
6
+ <link rel="stylesheet" href="style.css">
 
7
  </head>
8
  <body>
9
+ <header>
10
+ <h1>🛡️ Codex ReflexGuard Dashboard</h1>
11
+ <p>Live Reflex Intelligence System (Backend Simulation Enabled)</p>
12
+ </header>
 
13
 
14
+ <main>
15
+ <section class="input-section">
16
+ <label for="scenarioInput">Describe system scenario:</label>
17
+ <input type="text" id="scenarioInput" placeholder="e.g. Memory surge detected...">
18
+ <button onclick="triggerReflex()">Launch Reflex Simulation</button>
19
+ </section>
20
 
21
+ <section class="log-section">
22
+ <h2>🧠 System Log</h2>
23
+ <pre id="logWindow">[ReflexGuard]: Awaiting input...</pre>
24
+ </section>
25
+ </main>
26
+
27
+ <script src="script.js"></script>
28
  </body>
29
  </html>