forked from hnhx/librex
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdonate.php
30 lines (27 loc) · 1.35 KB
/
donate.php
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
<?php
require "misc/header.php";
// Feel free to add your donation options here, but please don't remove mine.
?>
<title>LibreX - Donate</title>
</head>
<body>
<div class="misc-container">
<h1>Donate to the developer</h1>
<h3>Bitcoin (BTC):</h3>
<p>bc1qs43kh6tvhch02dtsp7x7hcrwj8fwe4rzy7lp0h</p>
<img src="static/images/btc.png" alt="btc qr code" width="150" height="150"/>
<h3>Monero (XMR):</h3>
<p>41dGQr9EwZBfYBY3fibTtJZYfssfRuzJZDSVDeneoVcgckehK3BiLxAV4FvEVJiVqdiW996zvMxhFB8G8ot9nBFqQ84VkuC</p>
<img src="static/images/xmr.png" alt="xmr qr code" width="150" height="150"/>
</div>
<div class="misc-container">
<h1>Donate to instance</h1>
<h3>Bitcoin (BTC):</h3>
<p>bc1qnwc9guv3t98sspf4schl082tqzy54m8ztdqqxg</p>
<img src="static/images/btc_instance.png" alt="btc qr code" width="150" height="150"/>
<h3>Monero (XMR):</h3>
<p>45W4D3rwsK5ifhkkvYtw4dZRzRwiyZhMqKR7jLSMNxBxTzXeJ4xfJYH5JQb3y5tYUJ2GEDMoSY9T6eemMN3hCEsALXHGLVj</p>
<img src="static/images/xmr_instance.png" alt="xmr qr code" width="150" height="150"/>
</div>
<style>.footer-container{position:fixed;}</style>
<?php require "misc/footer.php"; ?>