Chat Widget Test Page
Note: The chat widget connects to the n8n webhook at https://n8n.botwizard.ch/webhook/edevis-chat. Messages will only receive responses when the webhook is properly configured.
<!-- Add CSS -->
<link rel="stylesheet" href="edevis-chat.css">
<!-- Add JavaScript (before </body>) -->
<script src="edevis-chat.js"></script>
<!-- Optional: Custom configuration -->
<script>
EdevisChat.configure({
botName: 'My Assistant',
botTitle: 'My Assistant',
webhookUrl: 'https://your-webhook-url.com',
welcomeMessage: 'Hello! How can I help you?'
});
</script>