bitcoin-transfer-pro / index.html
Qalam's picture
# transfer_all_btc.py
9ff6a28 verified
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitcoin Transfer Pro</title>
<link rel="icon" type="image/x-icon" href="https://static.photos/bitcoin/320x240/1">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gradient-to-br from-gray-900 to-black text-white min-h-screen">
<custom-header></custom-header>
<main class="container mx-auto px-4 py-8 max-w-4xl">
<div class="text-center mb-12">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Bitcoin Transfer Pro</h1>
<p class="text-xl text-gray-300">Securely transfer all your BTC with one click</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<!-- Transfer Form -->
<div class="bg-gray-800 rounded-2xl p-6 shadow-xl border border-gray-700">
<h2 class="text-2xl font-bold mb-6 flex items-center">
<i data-feather="send" class="mr-2 text-blue-400"></i>
Transfer Details
</h2>
<form id="transferForm" class="space-y-6">
<div>
<label class="block text-gray-300 mb-2">API Key</label>
<input type="password" id="apiKey" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Enter your API key">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label class="block text-gray-300 mb-2">Username</label>
<input type="text" id="username" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500" value="qalam">
</div>
<div>
<label class="block text-gray-300 mb-2">Password</label>
<input type="password" id="password" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Enter password">
</div>
</div>
<div>
<label class="block text-gray-300 mb-2">Destination Address</label>
<input type="text" id="destination" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500" value="bc1q3x5x7274xmt7g2j3624js6hrskf2utvcanfv89">
</div>
<div class="flex items-center">
<input type="checkbox" id="confirmTransfer" class="mr-2 h-5 w-5 text-blue-500 rounded focus:ring-blue-600">
<label for="confirmTransfer" class="text-gray-300">I confirm I want to transfer all BTC</label>
</div>
<button type="submit" id="transferBtn" class="w-full bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300 transform hover:scale-105 disabled:opacity-50 disabled:cursor-not-allowed">
Transfer All BTC
</button>
</form>
</div>
<!-- Balance & Status -->
<div class="space-y-8">
<div class="bg-gray-800 rounded-2xl p-6 shadow-xl border border-gray-700">
<h2 class="text-2xl font-bold mb-6 flex items-center">
<i data-feather="dollar-sign" class="mr-2 text-green-400"></i>
Account Balance
</h2>
<div class="text-center py-8">
<div class="text-4xl font-bold text-green-400 mb-2" id="balanceAmount">0.00000000 BTC</div>
<button id="refreshBalance" class="mt-4 bg-gray-700 hover:bg-gray-600 text-white py-2 px-6 rounded-lg transition duration-300 flex items-center mx-auto">
<i data-feather="refresh-cw" class="mr-2"></i>
Refresh Balance
</button>
</div>
</div>
<div class="bg-gray-800 rounded-2xl p-6 shadow-xl border border-gray-700">
<h2 class="text-2xl font-bold mb-6 flex items-center">
<i data-feather="activity" class="mr-2 text-yellow-400"></i>
Transaction Status
</h2>
<div class="py-4">
<div class="flex justify-between items-center mb-4">
<span class="text-gray-400">Task ID:</span>
<span id="taskId" class="font-mono">-</span>
</div>
<div class="flex justify-between items-center mb-4">
<span class="text-gray-400">Status:</span>
<span id="transactionStatus" class="px-3 py-1 rounded-full bg-gray-700">Pending</span>
</div>
<div class="flex justify-between items-center">
<span class="text-gray-400">Amount:</span>
<span id="transferAmount" class="font-mono">0.00000000 BTC</span>
</div>
</div>
<div class="mt-6">
<button id="checkStatus" class="w-full bg-gray-700 hover:bg-gray-600 text-white py-3 px-4 rounded-lg transition duration-300 flex items-center justify-center disabled:opacity-50 disabled:cursor-not-allowed">
<i data-feather="eye" class="mr-2"></i>
Check Transaction Status
</button>
</div>
</div>
</div>
</div>
<!-- Response Log -->
<div class="mt-12 bg-gray-800 rounded-2xl p-6 shadow-xl border border-gray-700">
<h2 class="text-2xl font-bold mb-6 flex items-center">
<i data-feather="terminal" class="mr-2 text-red-400"></i>
API Response Log
</h2>
<div class="bg-gray-900 rounded-lg p-4 h-64 overflow-y-auto font-mono text-sm">
<pre id="responseLog" class="text-gray-300">$ Welcome to Bitcoin Transfer Pro</pre>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>