{% extends "layout.html" %} {% block title %}Login Example{% endblock %} {% block page_content %}
Total to pay: £{{ '{:,.2f}'.format(total_price) }}
Shipping price: £{{ shipping_price }}
Final price: £{{ '{:,.2f}'.format(final_price) }}
{{ form.security_pin.label }} {{ form.security_pin(class = "input_field") }} {% if form.security_pin.errors %} {% for error in form.security_pin.errors %}
{{ error }}
please enter cart CSV security pin
{{ form.card_num.label }} {{ form.card_num(class = "input_field") }} {% if form.card_num.errors %} {% for error in form.card_num.errors %}
please enter card number
{{ form.month.label }} {{ form.month(class = "input_field") }} / {{ form.year(class = "input_field") }}
please enter expiery date in form month / yvear
{{ form.submit(class = "orange_button") }}