{% extends 'frontend/layouts/index.html.twig' %} {% block stylesheets %} {% endblock %} {% block publiccontent %}
{#
#} {#
#} {#
#} {# Do you have a voucher? #} {#
#} {#
#} {#
#}
If you have a coupon code, please apply it below.
{{ form_start(form, {'attr': {'id': 'checkoutForm', 'novalidate': 'novalidate'}}) }}

Billing Details


{{ form_widget(form.email, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.firstName, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.lastName, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.companyName, {'attr': {'class': 'form-control'}}) }}
{{ form_widget(form.country, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.address, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.postalCode, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.city, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.state, {'attr': {'class': 'form-control', 'required': 'required'}}) }}
{{ form_widget(form.mobileno) }}

Additional Information


{{ form_widget(form.notes, {'attr': {'class': 'form-control'}}) }}

Your Order


Product Subtotal
  • {{ product.name }} - {{ duration }} {{ duration == 1 ? 'Month' : 'Months' }} {{ price|number_format(2, ',', '.') }} €
  • Discount {{ discount }} %
  • Subtotal {{ discountedPrice|number_format(2, ',', '.') }} €
  • Total {{ discountedPrice }} €
{% if product.regularprice > 0 %}

Payment Method


{% endif %}
{% if product.regularprice > 0 %}
{#
#} {% for choice in form.payment_option %}
{{ form_widget(choice) }} {{ choice.vars.label }} logo
{% elseif choice.vars.value == 'ideal' %}
After submitting, you will be redirected to securely complete the next steps.

By providing payment information and confirming the payment, you authorize (A) {{ app_name }} (Company HQ Commerce) and Stripe, our payment service providers and/or PPRO, the local service providers, to debit your account via direct debit. At the same time (B) you instruct your credit institution in accordance with these instructions to debit your account accordingly. You have the right to request a refund from your credit institution under the terms and conditions applicable to your agreement with your credit institution. Refund requests must be made within eight weeks starting from the date on which your account was debited.

It is understood that the conditions agreed with your credit institution will apply. By providing your consent, you agree to receive the advance notice at least two days before the due date of the payment collection.

{% elseif choice.vars.value == 'p24' %}
{% elseif choice.vars.value == 'sofort' %}
After submitting, you will be redirected to securely complete the next steps.

By providing payment information and confirming the payment, you authorize (A) {{ app_name }} (Company HQ Commerce) and Stripe, our payment service providers and/or PPRO, the local service providers, to debit your account via direct debit. At the same time (B) you instruct your credit institution in accordance with these instructions to debit your account accordingly. You have the right to request a refund from your credit institution under the terms and conditions applicable to your agreement with your credit institution. Refund requests must be made within eight weeks starting from the date on which your account was debited.

It is understood that the conditions agreed with your credit institution will apply. By providing your consent, you agree to receive the advance notice at least two days before the due date of the payment collection.

{% endif %}
{% endfor %}
{% endif %}
{{ form_row(form.subscribeNews) }}

We use your personal data to process your order, to provide the best possible user experience on this website, and for other purposes described in our {% for menuSetting in getMenuSettings() %} {% if menuSetting.name == 'Privacy Policy' and menuSetting.isActive %} {% set privacyPolicyUrl = menuSetting.url is not empty ? menuSetting.url : '#' %} privacy policy.

{% endif %} {% endfor %}
{{ form_label(form.agreeTerms) }} {{ form_widget(form.agreeTerms, {'attr': {'class': 'form-check-input'}}) }} {% for menuSetting in getMenuSettings() %} {% if menuSetting.name == 'Terms And Condition' and menuSetting.isActive %} {% set Url = menuSetting.url is not empty ? menuSetting.url : '#' %} terms and conditions {% endif %} {% endfor %}
{% if product.regularprice > 0 %}
{{ form_row(form.auto_renewal) }}
{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}