mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-26 19:47:32 +00:00
Added bitcoin donate
This commit is contained in:
BIN
static/img/bitcoin-qr.png
Normal file
BIN
static/img/bitcoin-qr.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 555 B |
@@ -11,7 +11,6 @@
|
|||||||
<ul class="nav ace-nav">
|
<ul class="nav ace-nav">
|
||||||
<li><a href="/mixes">Mixes</a></li>
|
<li><a href="/mixes">Mixes</a></li>
|
||||||
<li><a href="/users">Users</a></li>
|
<li><a href="/users">Users</a></li>
|
||||||
<li><a class="btn-danger" data-bypass="true" id="header-donate-button">Donate</a></li>
|
|
||||||
{% if false %}
|
{% if false %}
|
||||||
<li class="purple">
|
<li class="purple">
|
||||||
<a data-bypass="true" id="header-live-button"> Listen Live
|
<a data-bypass="true" id="header-live-button"> Listen Live
|
||||||
@@ -30,6 +29,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="navbar-header pull-right" role="navigation">
|
<div class="navbar-header pull-right" role="navigation">
|
||||||
<ul class="nav ace-nav">
|
<ul class="nav ace-nav">
|
||||||
|
<li><a class="btn-danger" data-bypass="true" id="header-donate-button">Donate</a></li>
|
||||||
<li class="nav ace-nav" id="header-notifications">
|
<li class="nav ace-nav" id="header-notifications">
|
||||||
<!-- End Notifications li -->
|
<!-- End Notifications li -->
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -9,12 +9,30 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$('#submit')
|
$('#paypal-submit').click(function () {
|
||||||
|
$('#paypal-form').submit();
|
||||||
|
});
|
||||||
|
$('#bitcoins-submit').click(function () {
|
||||||
|
$('#initial-banner').hide();
|
||||||
|
$('#bitcoin-preamble').show();
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
<div class="well">
|
<div class="well">
|
||||||
|
<div class="marketing-droid-speak" id="initial-banner">
|
||||||
While the site is free and always will be free, bandwidth and disk space aren't. <br/>
|
While the site is free and always will be free, bandwidth and disk space aren't. <br/>
|
||||||
Any support is gratefully received...
|
Any support is gratefully received...
|
||||||
</div>
|
</div>
|
||||||
|
<div id="bitcoin-preamble" style="display: none">
|
||||||
|
<h1>Have 10 INTERNET nerd points!!</h1>
|
||||||
|
<small>You know what to do!!</small>
|
||||||
|
<hr />
|
||||||
|
<img src="{{ STATIC_URL }}img/bitcoin-qr.png" alt="Bitcoin QR wallet='1HwT3NxV7BpksNXBnm5hpG5EHAfRNZuJV2'">
|
||||||
|
<a class="btn btn-info" href="bitcoin:1HwT3NxV7BpksNXBnm5hpG5EHAfRNZuJV2">
|
||||||
|
<i class="icon-folder-open-alt bigger-125"></i>Open Wallet</a>
|
||||||
|
<hr/>
|
||||||
|
<i class="icon-bitcoin green"></i>1HwT3NxV7BpksNXBnm5hpG5EHAfRNZuJV2
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<form id="paypal-form" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
<form id="paypal-form" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
||||||
<input type="hidden" name="cmd" value="_s-xclick">
|
<input type="hidden" name="cmd" value="_s-xclick">
|
||||||
<input type="hidden" name="hosted_button_id" value="29VBHXWZNV8VQ">
|
<input type="hidden" name="hosted_button_id" value="29VBHXWZNV8VQ">
|
||||||
@@ -22,10 +40,10 @@
|
|||||||
height="1">
|
height="1">
|
||||||
</form>
|
</form>
|
||||||
<p>
|
<p>
|
||||||
<button class="btn btn-pink" name="submit">
|
<button class="btn btn-pink" name="paypal" id="paypal-submit">
|
||||||
<i class="icon-euro bigger-125"></i>Paypal
|
<i class="icon-euro bigger-125"></i>Paypal
|
||||||
</button>
|
</button>
|
||||||
<button class="btn btn-green" name="bitcoins" id="bitcoins">
|
<button class="btn btn-info" name="bitcoins" id="bitcoins-submit">
|
||||||
<i class="icon-bitcoin align-top bigger-125"></i>Bitcoins
|
<i class="icon-bitcoin align-top bigger-125"></i>Bitcoins
|
||||||
</button>
|
</button>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
<h5>
|
<h5>
|
||||||
We've noticed you've played a few mixes.
|
We've noticed you've played a few mixes.
|
||||||
</h5>
|
</h5>
|
||||||
|
<div class="marketing-droid-speak">
|
||||||
<small>
|
<small>
|
||||||
We're happy you're enjoying the site but we would love it
|
We're happy you're enjoying the site but we would love it
|
||||||
if you would consider logging in.<br/>
|
if you would consider logging in.<br/>
|
||||||
@@ -23,5 +24,6 @@
|
|||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block primarybutton %}Okies...{% endblock %}
|
{% block primarybutton %}Okies...{% endblock %}
|
||||||
Reference in New Issue
Block a user