bornhack-website/shop/templates/checkout.html
Thomas Steen Rasmussen 82ae2b8c23 more work on shop
2016-05-12 19:08:54 +02:00

15 lines
490 B
HTML

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block content %}
<form method="POST">
{% csrf_token %}
{% bootstrap_button "Pay with credit card" name="credit_card" button_type="submit" button_class="btn-primary" %}
{% bootstrap_button "Pay with blockchain" name="blockchain" button_type="submit" button_class="btn-primary" %}
{% bootstrap_button "Pay with bank transfer" name="bank_transfer" button_type="submit" button_class="btn-primary" %}
</form>
{% endblock %}