Private
Public Access
1
0
Files
rowsandall/rowers/templates/billing.html
2019-02-21 17:51:51 +01:00

51 lines
1.6 KiB
HTML

{% extends "newbase.html" %}
{% block title %}Rowsandall Paid Membership{% endblock title %}
{% load rowerfilters %}
{% block main %}
<h1>Upgrade</h1>
<form action="" method="post">
<ul class="main-content">
<li class="grid_4">
<h2>Fill in Billing Details</h2>
<p>For tax reasons, we need your country of residence</p>
<table>
{{ billingaddressform.as_table }}
</table>
</li>
<li class="grid_4">
<h2>Choose your Plan</h2>
<p>Unless specified otherwise, the payments on the
recurring payment plans are annual. The prices are specified
as a price per year. You can downgrade or cancel your
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
payments and <a href="/rowers/legal/#refunds">refunds policy</a>.
Accepted payment methods are the payment methods offered
by
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
through us. If you have any questions about our payments and refunds policy, please contact
us by email at support@rowsandall.com.
</p>
<table width="100%">
{{ planselectform.as_table }}
</table>
</li>
<li class="grid_4">
{% csrf_token %}
<input type="submit" value="Proceed">
You will be able to review your order before purchase.
</li>
</ul>
</form>
{% endblock %}
{% block sidebar %}
{% include 'menu_payments.html' %}
{% endblock %}