22 lines
632 B
HTML
22 lines
632 B
HTML
<!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>
|