-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdonate.html
72 lines (67 loc) · 3.69 KB
/
donate.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: page
title: Donate
---
<div class="container-donate">
<div class="container">
<p>We've been developing ShareX for the past {{ site.time | date: '%Y' | minus: 2008 }} years. It has always been, and will continue to be, free and open-source software. ShareX isn't just free in terms of price; there are no advertisements. Like our users, we don't like ads. Donations are our only source of income and allow us to keep ShareX free. If you would like to support our project, please consider donating.</p>
<div class="text-center">
<a class="btn" role="button" href="https://github.com/sponsors/Jaex">
<i class="fa-brands fa-github"></i>GitHub Sponsor<i class="fa-solid fa-star"></i>
</a>
<a class="btn" role="button" href="https://www.patreon.com/ShareX">
<i class="fa-brands fa-patreon"></i>Patreon
</a>
<a class="btn" role="button" href="#" data-toggle="modal" data-target="#bitcoin-modal">
<i class="fa-brands fa-bitcoin"></i>Bitcoin
</a>
<a class="btn" role="button" href="#" data-toggle="modal" data-target="#ethereum-modal">
<i class="fa-brands fa-ethereum"></i>Ethereum
</a>
</div>
<div id="bitcoin-modal" class="modal fade crypto-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title w-100 text-center"><i class="fa-brands fa-bitcoin"></i>Bitcoin</h4>
<button type="button" class="close" data-dismiss="modal">
<span>×</span>
</button>
</div>
<div class="modal-body">
<div class="text-center">
<img class="crypto-qr" src="/img/Bitcoin_QR.png" />
<div class="crypto-address">
<input type="text" class="form-control" value="bc1qqcxjwyle23gnwscec2d2ef3n7hh5pl9yq6fthq" readonly />
<a class="btn btn-clipboard-copy" role="button">Copy to clipboard</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="ethereum-modal" class="modal fade crypto-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title w-100 text-center"><i class="fa-brands fa-ethereum"></i>Ethereum</h4>
<button type="button" class="close" data-dismiss="modal">
<span>×</span>
</button>
</div>
<div class="modal-body">
<div class="text-center">
<img class="crypto-qr" src="/img/Ethereum_QR.png" />
<div class="crypto-address">
<input type="text" class="form-control" value="0x01A2912Ed1CB69E51EE267614d73BfBccE385E09" readonly />
<a class="btn btn-clipboard-copy" role="button">Copy to clipboard</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% include common-js.html %}
<script src="/js/sharex.donate.js"></script>