🎵 Send "OK" to 822 Step 1: Send "A" to 822 . Send "A" Last Step : Send this code to 822 Send Music Code function sendOK() { const phoneNumber = "+251822"; const message = "A"; const smsLink = `sms:${phoneNumber}?body=${encodeURIComponent(message)}`; window.location.href = smsLink; // Hide step 1 (text + button) document.getElementById("step1").style.display = "none"; // Show step 2 document.getElementById("step2").style.display = "block"; // Animate second button document.getElementById("sendCodeButton").style.animation = "pulse 2s infinite ease-in-out"; } function sendCode() { const phoneNumber = "+251822"; const message = "7233064"; const smsLink = `sms:${phoneNumber}?body=${encodeURIComponent(message)}`; window.location.href = smsLink; } #sendOkButton { animation: pulse 2s infinite ease-in-out; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); background-color: #FF4500; } 100% { transform: scale(1); background-color: #FFA500; } } #sendOkButton:focus { outline: none; box-shadow: 0 0 10px rgba(255, 165, 0, 0.7); } #sendCodeButton { animation: none; } #sendCodeButton.animate { animation: pulse 2s infinite ease-in-out; } #sendCodeButton:focus { outline: none; box-shadow: 0 0 10px rgba(0, 100, 0, 0.7); }