To start your application, please fill out the form below.
// Wait for the page to fully load to ensure the button exists
window.addEventListener('load', function() {
var helpButton = document.getElementById('OpenChatButton');
if (helpButton) {
helpButton.addEventListener('click', function() {
// Check if the chat widget's API is available
if (window.AuthentiChat && typeof window.AuthentiChat.open === 'function') {
window.AuthentiChat.open();
}
});
}
});