Current File : /home/quantums/wipo-office.com/verion/how-to-buy.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>How to Buy $VNX</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
  <header>
    <h1>How to Join the Presale</h1>
  </header>

  <section>
    <p>Send BTC to this address:</p>
    <img src="assets/img/qr-btc.png" alt="BTC QR" width="200">
    <p><strong>bc1q02ahgekkp2dpf4c66lpmc4prgq5ajncuv2d3e6</strong></p>
    <button onclick="copyAddress()">Copy Address</button>

    <h3>After sending BTC, please fill in:</h3>
    <form action="mailto:presale@vereon.io" method="post" enctype="text/plain">
      <input type="text" name="Name" placeholder="Your Name" required><br><br>
      <input type="email" name="Email" placeholder="Your Email" required><br><br>
      <textarea name="BTC Amount" placeholder="Amount sent in BTC" required></textarea><br><br>
      <textarea name="Your Wallet Address for VNX" placeholder="Your VNX receiving address" required></textarea><br><br>
      <input type="submit" value="Send Info">
    </form>
  </section>

  <footer>
    <a href="index.html">Home</a>
  </footer>

  <script>
    function copyAddress() {
      navigator.clipboard.writeText('bc1q02ahgekkp2dpf4c66lpmc4prgq5ajncuv2d3e6');
      alert('BTC address copied!');
    }
  </script>
</body>
</html>