WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
फॉलोवर बॉट यूआई
2574
yashartabrizi
संपादक में खोलें
अपना कोड प्रकाशित करें
अनुशंसित
25 August 2024
यूआई एनीमेशन उत्पादों की खोज
20 June 2025
सीएसएस ग्लासमोर्फिज्म प्लेयर और ऐप आइकन यूआई
29 August 2024
घड़ी यूआई-डार्क/लाइट बटन
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}!`; }