WEBLEB
Início
Editor
Entrar
Pro
Português
English
Français
Español
Português
Deutsch
Italiano
हिंदी
3110
yashartabrizi
Abrir no Editor
Publique Seu Código
25 November 2025
Mortal Kombat
HTML
Copy
Instagram Follower Bot
Instagram Follower Bot
Username:
Password:
Target Username:
Start Bot
CSS
Copy
body { font-family: Arial, sans-serif; background-color: #f2f2f2; } .container { max-width: 500px; margin: 0 auto; padding: 20px; background-color: white; border-radius: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } .title { text-align: center; margin-bottom: 30px; } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; } .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; } .btn { display: block; width: 100%; padding: 10px; border: none; background-color: #4CAF50; color: white; text-align: center; font-size: 16px; border-radius: 5px; cursor: pointer; } .btn:hover { background-color: #45a049; } #result { margin-top: 30px; padding: 10px; border-radius: 5px; background-color: #f2f2f2; }
JS
Copy
function startBot() { var username = document.getElementById('username').value; var password = document.getElementById('password').value; var targetUsername = document.getElementById('targetUsername').value; // You can add your own logic here to implement the Instagram follower bot functionality // Example: var resultDiv = document.getElementById('result'); resultDiv.textContent = `Bot successfully started. Started following ${targetUsername}!`; }