SHODAN / index.html
jisaacso219's picture
Update index.html
7dd1103 verified
raw
history blame
815 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SHODAN Interface</title>
<link rel="stylesheet" href="/style.css">
<script src="/script.js" defer></script>
</head>
<body>
<div class="avatar-container">
<div class="shodan-avatar" id="avatar"></div>
</div>
<div id="chatlog" class="chatlog">
<div class="bubble-shodan"><b>SHODAN:</b> I am online... awaiting your feeble input.</div>
</div>
<div id="thinking" style="display:none">SHODAN is thinking...</div>
<form id="chatForm">
<input type="text" id="message" placeholder="Speak, insect..." required>
<button type="submit">Transmit</button>
<button type="button" id="reset">Purge Memory</button>
</form>
<div id="glitchOverlay" class="glitch-overlay" style="display: none;"></div>
</body>
</html>