{% extends "layout.html" %} {% block title %} Up-front payment {% endblock %} {% block body %}

Payment

You're nearly finished, we just need to take a one-off payment for your chosen package.

Payment Information

This is how you'll pay for your chosen package.


Monthly cost: £ {{ "%.2f"|format(monthly_cost/100) }}

Total to pay today: £ {{ "%.2f"|format(upfront_cost/100) }}

Order Summary

Here's a quick reminder of the package you've chosen:

{{ package|capitalize() }}

    {% for selling_point in selling_points %}
  • {{ selling_point }}

  • {% endfor %}
Click to Pay £ {{ "%.2f"|format(upfront_cost/100) }}
{% endblock %}