Version 1 of chatbot frontend
This commit is contained in:
21
index.html
Normal file
21
index.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Chat with n8n</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="chat-container">
|
||||
<div class="avatar-container">
|
||||
<img src="bot-avatar.png" alt="Bot Avatar" class="bot-avatar">
|
||||
<h2>Chat with Paul</h2>
|
||||
</div>
|
||||
<div id="chat-messages"></div>
|
||||
<input type="text" id="user-input" placeholder="Type a message...">
|
||||
<button onclick="sendMessage()">Send</button>
|
||||
</div>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user