Spaces:
Runtime error
Runtime error
Update index.html
Browse files- index.html +10 -8
index.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="UTF-8" />
|
5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0"
|
6 |
<title>Arqonz AI Chatbot</title>
|
7 |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
|
8 |
<style>
|
@@ -100,7 +100,7 @@
|
|
100 |
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom px-3">
|
101 |
<div class="container-fluid">
|
102 |
<a class="navbar-brand" href="https://arqonz.com/">
|
103 |
-
<img src="https://www.arqonz.com/static/images/Logo-Arq.png" alt="
|
104 |
</a>
|
105 |
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
106 |
<span class="navbar-toggler-icon"></span>
|
@@ -126,13 +126,15 @@
|
|
126 |
<div class="chat-container">
|
127 |
<div class="chat-header">AI Chatbot</div>
|
128 |
<div class="chat-box" id="chatBox">
|
129 |
-
<div class="bot-message">Hi! How can I help you
|
130 |
-
</div>
|
131 |
-
<div class="chat-input-area px-3 pb-3">
|
132 |
-
<button id="micBtn">🎙️</button>
|
133 |
-
<input type="text" id="userInput" placeholder="Ask a question..." class="form-control" />
|
134 |
-
<button onclick="sendMessage()">➤</button>
|
135 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
</div>
|
137 |
</main>
|
138 |
|
|
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
<title>Arqonz AI Chatbot</title>
|
7 |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
|
8 |
<style>
|
|
|
100 |
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom px-3">
|
101 |
<div class="container-fluid">
|
102 |
<a class="navbar-brand" href="https://arqonz.com/">
|
103 |
+
<img src="https://www.arqonz.com/static/images/Logo-Arq.png" alt="Arqonz" height="45">
|
104 |
</a>
|
105 |
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
106 |
<span class="navbar-toggler-icon"></span>
|
|
|
126 |
<div class="chat-container">
|
127 |
<div class="chat-header">AI Chatbot</div>
|
128 |
<div class="chat-box" id="chatBox">
|
129 |
+
<div class="bot-message">Hi! How can I help you?</div>
|
|
|
|
|
|
|
|
|
|
|
130 |
</div>
|
131 |
+
|
132 |
+
<!-- Form handles enter key + button click -->
|
133 |
+
<form class="chat-input-area px-3 pb-3" onsubmit="sendMessage(); return false;">
|
134 |
+
<button type="button" id="micBtn">🎙️</button>
|
135 |
+
<input type="text" id="userInput" placeholder="Ask a question..." class="form-control" autocomplete="off" />
|
136 |
+
<button type="submit">➤</button>
|
137 |
+
</form>
|
138 |
</div>
|
139 |
</main>
|
140 |
|