aeris-public-demo / index.html
AERIS-Framework's picture
Upload 7 files
d5f6bc8 verified
raw
history blame contribute delete
884 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AERIS Chatbox</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1><span class="tagline">Experience <strong>dialectical reasoning</strong> with A<span class="aeris-logo">E</span>RIS</span></h1>
<img src="logo.png" alt="AERIS Logo" class="logo" />
<div class="chat-window" id="chat-window"></div>
<div class="input-area">
<input type="text" id="user-input" placeholder="Enter a message..." />
<button onclick="sendMessage()">Send</button>
<button onclick="clearChat()">Clear</button>
</div>
<a href="compare.html" class="compare-button">Compare with baseline →</a>
</div>
<script src="script.js"></script>
</body>
</html>