Cult / cult.html
elasko-aim's picture
Upload cult.html
bdc0d5e verified
raw
history blame contribute delete
372 Bytes
<!DOCTYPE html>
<html>
<body style="background:black;color:red;">
<h1>CultCore Control</h1>
<button onclick="ask()">🧿 Speak</button>
<script>
function ask(){
fetch("/api/ask",{
method:"POST",
headers:{"Content-Type":"application/json"},
body:JSON.stringify({text:"Deliver prophecy"})
})
.then(r=>r.json())
.then(d=>alert(d.answer))
}
</script>
</body>
</html>