2017-03-31 11:13:02 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block head %}
|
|
|
|
<style type="text/css">
|
|
|
|
body { background: #fff9f2 !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */
|
|
|
|
.btn { padding: 40px; margin:10px;}
|
2017-03-31 21:03:57 +00:00
|
|
|
.jumbotron { text-align: center; }
|
2017-03-31 11:13:02 +00:00
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="jumbotron">
|
|
|
|
<h1> Select a Payment Method: </h1>
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-info disabled"><h2><span class="glyphicon glyphicon-credit-card"></span><br>Card</h2></button>
|
|
|
|
<button type="button" class="btn btn-info disabled"><h2><span class="glyphicon glyphicon-btc"></span><br>Bitcoin</h2></button>
|
|
|
|
<button type="button" class="btn btn-info disabled"><h2><span class="glyphicon glyphicon-grain"></span><br>Magic Beans</h2></button>
|
2017-03-31 23:07:08 +00:00
|
|
|
<a href="./collectsunlight"><button type="button" class="btn btn-info" ><h2><span class="glyphicon glyphicon-tree-deciduous"></span><br>Sunlight</h2></button></a>
|
2017-03-31 11:13:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|