21 lines
765 B
PHP
21 lines
765 B
PHP
<?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>
|
|
<h2>Bitcoin (BTC):</h2>
|
|
<p>bc1qs43kh6tvhch02dtsp7x7hcrwj8fwe4rzy7lp0h</p>
|
|
<img src="static/images/btc.png" alt="btc qr code" width="150" height="150"/>
|
|
<h2>Monero (XMR):</h2>
|
|
<p>41dGQr9EwZBfYBY3fibTtJZYfssfRuzJZDSVDeneoVcgckehK3BiLxAV4FvEVJiVqdiW996zvMxhFB8G8ot9nBFqQ84VkuC</p>
|
|
<img src="static/images/xmr.png" alt="xmr qr code" width="150" height="150"/>
|
|
</div>
|
|
|
|
<?php require "misc/footer.php"; ?>
|