<!-- -- Uploaded on : https://haxor.my.id/open/Auto-fb-creat-icsf.html -- Official Web : https://prinsh.com -- script-deface-generator.prinsh.com --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Facebook Auto Signup</title> <style> body { font-family: Arial, sans-serif; text-align: center; padding: 50px; background: linear-gradient(45deg, blue, red, yellow, green); background-size: 400% 400%; animation: gradientBG 10s infinite alternate; color: white; position: relative; overflow: hidden; } @keyframes gradientBG { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } } .overlay-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 80px; font-weight: bold; color: rgba(255, 255, 255, 0.2); text-transform: uppercase; z-index: -1; white-space: nowrap; } input, select { margin: 5px; padding: 10px; width: 80%; max-width: 300px; } button { padding: 10px 20px; font-size: 16px; background: blue; color: white; border: none; cursor: pointer; } .telegram-button { display: inline-block; margin-top: 20px; padding: 10px 20px; font-size: 18px; background: #0088cc; color: white; text-decoration: none; border-radius: 5px; } .telegram-button:hover { background: #005f8d; } </style> </head> <body> <div class="overlay-text">ICSF TEAM </div> <h1>Facebook Auto Create ICSF TEAM</h1> <form id="fbSignupForm"> <input type="text" id="firstName" placeholder="First Name" required><br> <input type="text" id="lastName" placeholder="Last Name" required><br> <input type="email" id="email" placeholder="Email" required><br> <input type="password" id="password" placeholder="Password" required><br> <label>Birth Date:</label><br> <input type="date" id="birthdate" required><br> <label>Gender:</label><br> <select id="gender"> <option value="male">Male</option> <option value="female">Female</option> </select><br> <button type="button" onclick="autoFill()">Auto Fill</button> <button type="submit">Sign Up</button> </form> <!-- Telegram Join Button --> <a href="https://t.me/ICSF0" class="telegram-button" target="_blank">Join Telegram</a> <script> function autoFill() { document.getElementById("firstName").value = "John"; document.getElementById("lastName").value = "Doe"; document.getElementById("email").value = "johndoe@example.com"; document.getElementById("password").value = "Test@1234"; document.getElementById("birthdate").value = "2000-01-01"; document.getElementById("gender").value = "male"; } document.getElementById("fbSignupForm").addEventListener("submit", function(event) { event.preventDefault(); alert(" Form submitted! Now you have to manually complete signup on Facebook."); }); </script> </body> </html>