-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFLASH USDT.html
84 lines (79 loc) · 4.62 KB
/
FLASH USDT.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLASH USDT Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-100 font-roboto relative">
<div class="container mx-auto p-4 relative z-10">
<header class="text-center my-8">
<img src="https://static.vecteezy.com/system/resources/thumbnails/011/307/321/small_2x/tether-usdt-badge-crypto-isolated-on-white-background-blockchain-technology-3d-rendering-free-png.png"
alt="USDT logo" class="mx-auto mb-4 w-24">
<h1 class="text-4xl font-bold text-blue-600">FLASH USDT Generator</h1>
<p class="text-lg text-gray-700 mt-2">Generate USDT quickly and securely</p>
</header>
<div class="bg-white shadow-md rounded-lg p-6 max-w-lg mx-auto">
<h2 class="text-2xl font-bold mb-4">Generate USDT</h2>
<form id="usdtForm">
<div class="mb-4">
<label class="block text-gray-700 font-bold mb-2" for="quantity">Quantity</label>
<input type="number" id="quantity" name="quantity" required
class="shadow border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline">
</div>
<div class="mb-4">
<label class="block text-gray-700 font-bold mb-2" for="network">Network</label>
<select id="network" name="network" required
class="shadow border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline">
<option value="TRC20">TRC20</option>
<option value="BEP20">BEP20</option>
<option value="ERC20">ERC20</option>
</select>
</div>
<div class="mb-4">
<label class="block text-gray-700 font-bold mb-2" for="address">Wallet Address</label>
<input type="text" id="address" name="address" required
class="shadow border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline">
</div>
<button type="submit"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">
Generate
</button>
</form>
</div>
<div class="bg-white shadow-md rounded-lg p-6 max-w-lg mx-auto mt-8">
<h2 class="text-2xl font-bold mb-4">Buy License Key</h2>
<p class="text-gray-700 mb-4">To use the FLASH USDT Generator, send payment to the TRC20 address below:</p>
<p class="text-gray-700 font-bold mb-4 break-words">TRZSZ5k8H6Ja1X1dvrJMbA5y7vERAPt67s</p>
<p class="text-gray-600 text-sm">Minimum payment: 50 USDT</p>
<button id="confirmPayment"
class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline mt-4">
I Have Paid
</button>
<div id="paymentMessage" class="text-green-500 font-bold mt-4 hidden">Verifying payment...</div>
</div>
<footer class="text-center mt-8">
<div class="bg-gray-800 text-white py-4">
<marquee behavior="scroll" direction="left" class="text-sm">
<span class="mx-4">User A: Successfully generated 200 USDT on TRC20</span>
<span class="mx-4">User B: License key verified, withdrawal completed</span>
<span class="mx-4">User C: Received 500 USDT via ERC20</span>
</marquee>
</div>
<p class="text-gray-700 mt-4">© 2024 FLASH USDT Generator. All rights reserved.</p>
</footer>
</div>
<script>
document.getElementById('usdtForm').addEventListener('submit', function(event) {
event.preventDefault();
alert('Processing... Please wait while your USDT is being generated.');
});
document.getElementById('confirmPayment').addEventListener('click', function() {
document.getElementById('paymentMessage').classList.remove('hidden');
});
</script>
</body>
</html>