Maintenance mode is on
AZ-CLOUD
We're building the future
AZ-Cloud is currently under construction. We're preparing to launch our next-generation cloud infrastructure and solutions. Stay tuned.
Thanks! We'll notify you when we launch.
// Initialize Lucide Icons
lucide.createIcons();
// Handle form submission
document.getElementById('notify-form').addEventListener('submit', function(e) {
e.preventDefault();
const emailInput = document.getElementById('email').value;
if(emailInput) {
// Hide form and show success message
this.classList.add('hide');
const successMsg = document.getElementById('success-message');
successMsg.classList.add('show');
// Optional: Reset after 5 seconds
setTimeout(() => {
successMsg.classList.remove('show');
this.classList.remove('hide');
document.getElementById('email').value = '';
}, 5000);
}
});