LibreY- privacy respecting meta search engine |
git clone git://git.acid.vegas/LibreY.git |
Log | Files | Refs | Archive | README | LICENSE |
donate.php (2356B)
1 <?php 2 require "misc/header.php"; 3 4 // Feel free to add your donation options here, but please don't remove mine. 5 ?> 6 7 <title>LibreY - Donate</title> 8 </head> 9 <body> 10 <div class="donate-container"> 11 <!-- librex dev --> 12 <h2> 13 <?php printftext("donate_original_developer", "Libre<span class=\"Y\">X</span>")?> 14 </h2> 15 16 <div class="flexbox-column"> 17 <div class="qr-box"> 18 <div class="inner-wrap"> 19 <h3>Bitcoin [BTC]</h3> 20 <p>bc1qs43kh6tvhch02dtsp7x7hcrwj8fwe4rzy7lp0h</p> 21 </div> 22 23 <img 24 src="/static/images/btc.png" 25 height="160" 26 width="160" 27 alt="btc qr code" 28 /> 29 </div> 30 <div class="qr-box"> 31 <div class="inner-wrap"> 32 <h3>Monero [XMR]</h3> 33 <p> 34 41dGQr9EwZBfYBY3fibTtJZYfssfRuzJZDSVDeneoVcgckehK3BiLxAV4FvEVJiVqdiW996zvMxhFB8G8ot9nBFqQ84VkuC 35 </p> 36 </div> 37 <img 38 src="/static/images/xmr.png" 39 height="160" 40 width="160" 41 alt="xmr qr code (hnhx)" 42 /> 43 </div> 44 45 <hr class="small-line" /> 46 47 <!-- librey dev --> 48 <h2> 49 <?php printftext("donate_fork", "Libre<span class=\"Y\">X</span>")?> 50 </h2> 51 52 <div class="qr-box"> 53 <div class="inner-wrap"> 54 <h3>Monero [XMR]</h3> 55 <p> 56 4ArntPzKpu32s4z2XqYhyaY1eUeUBKtCzJqEqxWtF5mCi5vR6sdhh32Hd2fk9FjeUxYDtaaUexUqoRNxrgfrtuXs4XpgMNJ 57 </p> 58 </div> 59 <img 60 src="/static/images/xmr-ahwx.png" 61 height="160" 62 width="160" 63 alt="xmr qr code (ahwx)" 64 /> 65 </div> 66 67 <div class="flex-row"> 68 <a href="https://ko-fi.com/Ahwxorg" target="_blank" 69 ><img 70 src="/static/images/kofi.png" 71 alt="kifi img" 72 height="50" 73 width="auto" 74 /></a> 75 76 <a href="https://www.buymeacoffee.com/ahwx" target="_blank"> 77 <img 78 src="/static/images/buy-me-a-coffee.png" 79 height="50" 80 width="auto" 81 alt="buy-me-a-coffee img" 82 /></a> 83 </div> 84 </div> 85 </div> 86 87 88 89 <?php require "misc/footer.php"; ?>