<!--
--  Uploaded on : https://haxor.my.id/open/mhbkashbom.html
--  Official Web : https://prinsh.com
--  script-deface-generator.prinsh.com
-->
<!DOCTYPE html>
<html>
<head>
    <title>bKash Bomber</title>
    <style>
        body {
            font-family: sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-color: #f0f0f0;
        }

        .container {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .input-group label {
            display: block;
            margin-bottom: 5px;
        }

        .input-group input {
            width: 90%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        button {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .join-tools {
            margin-top: 20px;
            background-color: #f0f0f0;
            padding: 10px;
            border-radius: 4px;
            text-align: center;
        }

        .join-tools a {
            text-decoration: none;
            color: #007bff;
            display: inline-flex;
            align-items: center;
        }

        .join-tools img {
            width: 20px;
            margin-left: 5px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>bKash Bomber</h1>
        <img src="https://mhmehedi.my.id/your_logo.png" alt="Logo" style="width: 100px; margin-bottom: 20px;">

        <div class="input-group">
            <label for="phone">Phone Number:</label>
            <input type="tel" id="phone" placeholder="017xxxxxxxx">
        </div>

        <div class="input-group">
            <label for="amount">Amount:</label>
            <input type="number" id="amount" placeholder="1000">
        </div>

        <button onclick="sendRequests()">Submit</button>

        <div class="join-tools">
            <a href="https://t.me/XcriptStore" target="_blank">
                Join For More Tools <img src="https://mhmehedi.my.id/tg.your_logo.png" alt="Telegram">
            </a>
        </div>

        <p id="message"></p>
    </div>

    <script>
        function sendRequests() {
            const phoneNumber = document.getElementById("phone").value;
            const apiUrl = `আপনার এপিআই দিবেন${phoneNumber}`;
            const messageElement = document.getElementById("message");

            fetch(apiUrl)
                .then(response => response.text())
                .then(data => {
                    if (data.includes("success")) {
                        messageElement.textContent = "Request sent successfully!";
                        messageElement.style.color = "green";
                    } else {
                        messageElement.textContent = "Failed to send request.";
                        messageElement.style.color = "red";
                    }
                })
                .catch(error => {
                    messageElement.textContent = "An error occurred.";
                    messageElement.style.color = "red";
                });
        }
    </script>
</body>
</html>