{% extends "layout.html" %} {% block title %}New Customer{% endblock %} {% block body %}
{{ form.csrf_token }}

Your details

We'll use these to send your confirmation email(s) and billing information to, so it's important that these are valid.

{% if error %}

Error: {{ error }} {% endif %}


Your Address


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 %}
{% endblock %}