Spaces:
Sleeping
Sleeping
Update index.html
Browse files- index.html +20 -19
index.html
CHANGED
|
@@ -1,28 +1,29 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
<link rel="stylesheet" href="style.css" />
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
<
|
| 14 |
-
</header>
|
| 15 |
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
|
|
|
| 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>
|