{% extends "layout.html" %} {% block title %}New Customer{% endblock %} {% block body %}
We'll use these to send your confirmation email(s) and billing information to, so it's important that these are valid.
Error: {{ error }} {% endif %} Your Name Email Phone Your Address Address line 1 City Post Code Order Summary Here's a quick reminder of the package you've chosen: {% for item in jamla['items'] %} {% if item['sku'] == request.args.get('plan') %} {{ item['title'] }} {% for selling_points in item['selling_points'] %} {{ selling_points }} {% endfor %} {% for requirement in item['requirements'] %} {% if requirement['instant_payment'] == True %} Pay today: £{{ "%.2f"|format(item['sell_price']/100) }} {% endif %} {% if requirement['subscription'] == True %} Price per month: £{{ "%.2f"|format(item['monthly_price']/100) }} {% endif %} {% endfor %} {% endif %} {% endfor %}
Here's a quick reminder of the package you've chosen:
{{ selling_points }}
Pay today: £{{ "%.2f"|format(item['sell_price']/100) }}
Price per month: £{{ "%.2f"|format(item['monthly_price']/100) }}