1
0
mirror of https://github.com/Adam-Ant/ClockworkAprilFools2017 synced 2025-06-14 02:11:12 +00:00

Repo refactor

This commit is contained in:
2017-03-31 20:35:16 +01:00
parent 166308ad01
commit 4c44f0a141
13 changed files with 0 additions and 0 deletions

21
templates/payment.html Normal file
View File

@ -0,0 +1,21 @@
{% 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;}
</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>
<a href="/collectsunlight"><button type="button" class="btn btn-info" ><h2><span class="glyphicon glyphicon-tree-deciduous"></span><br>Sunlight</h2></button></a>
</div>
</div>
{% endblock %}