{% extends 'base.html' %} {% load i18n static %} {% load custom_filters %} {% block title %} {% trans 'Upgrade Plan' %} {% endblock %} {% block customCSS %} {% endblock customCSS %} {% block content %}

{{ _("Choose Your Plan") }}

{% csrf_token %}
{{ _("Select Plan") }}
{{ _("Your Info") }}
{{ _("Payment") }}
{{ _("Confirm") }}

{{ _("1. Select a Plan") }}

{% for pp in plan_list %}
{% endfor %}

{{ _("2. Enter Your Information") }}

{{ _("Please enter your first name.") }}
{{ _("Please enter your last name.") }}
{{ _("Please enter a valid email address.") }}
{{ _("Please enter a valid 10-digit phone number.") }}

{{ _("3. Payment Information") }}

{{ _("Please enter the cardholder name.") }}
{{ _("Please enter a valid 16-digit card number.") }}
{{ _("Please enter a valid expiry date (MM/YY).") }}
{{ _("Please enter a valid 3-digit CVV.") }}

{{ _("4. Confirm Your Information") }}

{{ _("Order Summary") }}

{{ _("Plan") }}:

{{ _("Price (excl. VAT)") }}:

{{ _("VAT") }} (15%):


{{ _("Total") }}: 0.00

{{ _("User Information") }}

{{ _("Name") }}:

{{ _("Email") }}:

{{ _("Company") }}:

{{ _("Phone") }}:

{{ _("Payment") }}

{{ _("Cardholder") }}:

{{ _("Card Number") }}:

{{ _("Expiry") }}:

{% endblock content %} {% block customJS %} {% endblock customJS %}