jisaacso219 commited on
Commit
7dd1103
·
verified ·
1 Parent(s): 38ef0f8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +28 -1
index.html CHANGED
@@ -1 +1,28 @@
1
- [HTML CODE HERE]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>SHODAN Interface</title>
6
+ <link rel="stylesheet" href="/style.css">
7
+ <script src="/script.js" defer></script>
8
+ </head>
9
+ <body>
10
+ <div class="avatar-container">
11
+ <div class="shodan-avatar" id="avatar"></div>
12
+ </div>
13
+
14
+ <div id="chatlog" class="chatlog">
15
+ <div class="bubble-shodan"><b>SHODAN:</b> I am online... awaiting your feeble input.</div>
16
+ </div>
17
+
18
+ <div id="thinking" style="display:none">SHODAN is thinking...</div>
19
+
20
+ <form id="chatForm">
21
+ <input type="text" id="message" placeholder="Speak, insect..." required>
22
+ <button type="submit">Transmit</button>
23
+ <button type="button" id="reset">Purge Memory</button>
24
+ </form>
25
+
26
+ <div id="glitchOverlay" class="glitch-overlay" style="display: none;"></div>
27
+ </body>
28
+ </html>