Skip to content

Commit

Permalink
Create miner.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Infernoman committed Jun 13, 2015
1 parent 8821def commit 2dcc1e0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions website/pages/miner.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<div class="row">
<div class="col-md-4">
<p class="lead" align="center">Enter Your Wallet address</p>
<div class="input-group" align="center">
<input type="text" class="form-control input-lg" align="center">
<span class="input-group-btn" align="center">
<button class="btn btn-default btn-lg" type="button" align="center">Go!</button>
</span>
</div>
</div>
<div class="col-md-4"></div>
</div>
<script type="text/javascript">
$(document).ready(function(){

$('.btn-lg').click(function(){
window.location = "miner/" + $('.input-lg').val();
});
});
</script>

0 comments on commit 2dcc1e0

Please sign in to comment.