EasyVoIP Referral Program

Refer a Business and Earn Big!

Welcome to the EasyVoIP Referral Program! Earn account credits up to 100% of your monthly bill by referring businesses to EasyVoIP. Simply fill out the form below to get started.

Here's how it works:

  • Submit a referral using the form below.
  • When your referral becomes a customer, you’ll earn a credit based on their first month’s bill.
  • Your credit can cover up to 100% of your phone bill for the month!

Referral Form

Complete the form below to share your referral. We’ll take it from there!

// Carousel Navigation const carousel = document.querySelector('.glocom-carousel'); const items = document.querySelectorAll('.glocom-carousel-item'); let currentIndex = 0; function updateCarousel() { carousel.style.transform = `translateX(-${currentIndex * 320}px)`; } document.querySelector('.glocom-prev').addEventListener('click', () => { currentIndex = (currentIndex > 0) ? currentIndex - 1 : items.length - 1; updateCarousel(); }); document.querySelector('.glocom-next').addEventListener('click', () => { currentIndex = (currentIndex { currentIndex = (currentIndex + 1) % items.length; updateCarousel(); }, 5000); // Custom Cursor const cursor = document.createElement('div'); cursor.classList.add('glocom-custom-cursor'); document.body.appendChild(cursor); document.addEventListener('mousemove', (e) => { cursor.style.left = `${e.pageX}px`; cursor.style.top = `${e.pageY}px`; }); document.querySelectorAll('.glocom-feature-card, .glocom-carousel-item, .glocom-button').forEach(element => { element.addEventListener('mouseover', () => { cursor.classList.add('glocom-highlight-cursor'); }); element.addEventListener('mouseout', () => { cursor.classList.remove('glocom-highlight-cursor'); }); }); // Accordion for Mobile document.querySelectorAll('.glocom-feature-card').forEach(card => { card.addEventListener('click', () => { const isActive = card.classList.contains('active'); card.classList.toggle('active', !isActive); }); });