Live Demo Below
This widget can be embedded in any website using a simple iframe. Perfect for insurance firms looking to add professional onboarding without development costs.
Widget Events (test ui ,Check Console)
Events from the widget will appear here...
Easy WordPress Integration
1
Copy the Code
Copy the iframe code below and paste it into your WordPress page or post.
<iframe
src="https://insurance-widget.vercel.app/"
width="100%"
height="700px"
frameborder="0"
style="border: none; border-radius: 8px;">
</iframe>
2
WordPress Integration
Add an HTML block in WordPress editor and paste the iframe code.
- Works with Gutenberg editor
- Compatible with page builders
- Can be added to widgets
3
Customize & Deploy
The widget automatically adapts to your site and handles all insurance application logic.
- Mobile responsive
- Auto-resizing
- Event notifications
Benefits for Insurance Firms
- Cost-Effective: No development team needed
- Professional: Modern, mobile-friendly interface
- Easy Integration: Works with any website platform
- Secure: HTTPS encrypted, GDPR compliant
- Customizable: Brand colors and styling options
Advanced Integration with Events
// Listen for widget events
window.addEventListener('message', function(event) {
if (event.data.source === 'insurance-onboarding-widget') {
switch(event.data.type) {
case 'ONBOARDING_STEP_CHANGE':
console.log('Step changed:', event.data.payload);
break;
case 'ONBOARDING_COMPLETE':
console.log('Application completed!');
// Redirect or show success message
break;
case 'RESIZE_REQUEST':
// Auto-resize iframe
const iframe = document.getElementById('insurance-widget');
iframe.style.height = event.data.payload.height + 'px';
break;
}
}
});