-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (72 loc) · 3.27 KB
/
index.html
File metadata and controls
92 lines (72 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fire-Gem / AVIS-CORE / MASTER_OS</title>
<style>
body { margin: 0; background: #000b1a; overflow: hidden; height: 100vh; font-family: monospace; }
#desktop { position: absolute; width: 100vw; height: calc(100vh - 25px); z-index: 1; }
/* The main strike surface for your htdocs alert */
#alert-surface { position: absolute; width: 100%; height: 50%; top: 0; z-index: 10; pointer-events: none; }
.fire-html-1 {
position: fixed; bottom: 0; left: 0; width: 100%; height: 25px;
z-index: 100000; background: #001A33; border-top: 1px solid #00aaff;
}
#llm-audit-surface {
position: absolute; top: 10px; right: 10px; width: 350px; height: 400px;
background: rgba(0, 10, 30, 0.95); border: 1px double #FFD700;
padding: 10px; overflow-y: auto; z-index: 50; color: #FFD700; font-size: 12px;
}
#strike-list { list-style: none; padding: 0; margin: 0; }
</style>
<script>
function AVIS_STRIKE(msg, lvl = 2) {
const list = document.getElementById('strike-list');
if (list) {
const entry = document.createElement('li');
entry.style.color = (lvl === 1) ? '#C0C0C0' : '#FFD700';
entry.style.borderBottom = "1px solid #111";
entry.innerHTML = `[${new Date().toLocaleTimeString()}] <b style="color:#0af">VERIFIED:</b> ${msg}`;
list.prepend(entry);
}
console.log(`[AVIS-STRIKE] ${msg}`);
}
</script>
<!-- MUST BE TYPE="MODULE" FOR IMPORTS TO WORK -->
<!-- AVIS-CYBORG ARTIFACT: CORE_IGNITION -->
<!-- AVIS-CYBORG ARTIFACT: CORE_IGNITION -->
<script type="module">
/* ---------------------------------------------------------- */
/* IMPORT REQUIRES TYPE="MODULE" TO RESOLVE PATHS */
/* ---------------------------------------------------------- */
import { AVIS_MSG } from "./htdocs/AVIS_FVS_ALERT/AVIS_FVS_INI.js";
import { AVIS_ALERT } from "./htdocs/AVIS_FVS_ALERT/AVIS_FVS_INI.js";
let MSG_TERM_ON = true;
let MSG_TERM_OFF = false;
let MSG_SYS_ON = true;
let MSG_SYS_OFF = false;
let MSG_TEST_ON = true;
let MSG_TEST_OFF = false;
let MSG_ALERT_ON = true;
let MSG_ALERT_OFF = false;
let MSG_NULL = "";
let MSG_TEXT = "Terminal Ping";
let MSG_ID = "AVIS.FVS-CYBORG ARTIFACT";
AVIS_ALERT(MSG_SYS_OFF, MSG_TEST_OFF, MSG_ALERT_OFF, MSG_TEXT, MSG_TERM_ON);
alert(AVIS_MSG);
</script>
<!-- <object id="avis-fvs-strike" type="text/html" data="htdocs/AVIS_FVS_ALERT/AVIS_ALERT.html"></object>
-->
</head>
<body>
<div id="desktop"></div>
<div id="llm-audit-surface">
<div style="background:#FFD700;color:#000;font-weight:bold;padding:2px 5px;text-align:center;">[AVIS_LOG_AUDIT]</div>
<ul id="strike-list"></ul>
</div>
<div class="fire-html-1">
<object type="text/html" data="htdocs/fire-start.html" onload="AVIS_STRIKE('START_BAR_SEATED', 1)"></object>
</div>
<script>AVIS_STRIKE("ROBO-KNIGHT_ONLINE", 2);</script>
</body>
</html>