donate.php 765 B

1234567891011121314151617181920
  1. <?php
  2. require "misc/header.php";
  3. // Feel free to add your donation options here, but please don't remove mine.
  4. ?>
  5. <title>LibreX - Donate</title>
  6. </head>
  7. <body>
  8. <div class="misc-container">
  9. <h1>Donate to the developer</h1>
  10. <h2>Bitcoin (BTC):</h2>
  11. <p>bc1qs43kh6tvhch02dtsp7x7hcrwj8fwe4rzy7lp0h</p>
  12. <img src="static/images/btc.png" alt="btc qr code" width="150" height="150"/>
  13. <h2>Monero (XMR):</h2>
  14. <p>41dGQr9EwZBfYBY3fibTtJZYfssfRuzJZDSVDeneoVcgckehK3BiLxAV4FvEVJiVqdiW996zvMxhFB8G8ot9nBFqQ84VkuC</p>
  15. <img src="static/images/xmr.png" alt="xmr qr code" width="150" height="150"/>
  16. </div>
  17. <?php require "misc/footer.php"; ?>