{% extends "base.html" %} {% set _cms_title = get_page_content(page_id, 'title', g.lang_code) %} {% set _cms_desc = get_page_content(page_id, 'description', g.lang_code) %} {% set _cms_heading = get_page_content(page_id, 'page_heading', g.lang_code) %} {% set _cms_page_desc = get_page_content(page_id, 'page_description', g.lang_code) %} {% set _cms_page_body = get_page_content(page_id, 'page_body', g.lang_code) %} {% set _cms_head_html = get_page_content(page_id, 'head_html', g.lang_code) %} {% set _cms_og_image = get_page_content(page_id, 'og_image', g.lang_code) %} {% set _cms_before_faq_title = get_page_content(page_id, 'before_faq_title', g.lang_code) %} {% set _cms_before_faq_content = get_page_content(page_id, 'before_faq_content', g.lang_code) %} {% block title %}{% if _cms_title %}{{ _cms_title }}{% else %}{% trans %}Privacy Policy | OnlineConvert.cc{% endtrans %}{% endif %}{% endblock %} {% block description %}{% if _cms_desc %}{{ _cms_desc }}{% else %}{% trans %}Privacy Policy | OnlineConvert.cc{% endtrans %}{% endif %}{% endblock %} {% block og_image_tag %}{% if _cms_og_image %}{% endif %}{% endblock %} {% block extra_head %}{% if _cms_head_html %}{{ _cms_head_html|safe }}{% endif %}{% endblock %} {% block content %} {% set _pp_hero_type = site.get('hero_bg_type', 'gradient') if site is defined else 'gradient' %} {% set _hero_img = site.get('hero_bg_image', '') if site is defined else '' %} {% set _hero_lcl = (site.get('hero_img_left_color_light', '#1e3a5f') if site is defined) or '#1e3a5f' %} {% set _hero_lcd = (site.get('hero_img_left_color_dark', '#0f172a') if site is defined) or '#0f172a' %}
{% if _pp_hero_type == 'image' %} {% endif %} {% if _pp_hero_type == 'gradient' %}
{% elif _pp_hero_type == 'image' and _hero_img %}
{% endif %}

{{ _cms_heading if _cms_heading else _('Privacy Policy') }}

{% if _cms_page_desc %}

{{ _cms_page_desc }}

{% endif %}
{% if _cms_page_body %} {{ _cms_page_body|safe }} {% else %}

{% trans %}Policy Information{% endtrans %}

{% trans %}Update date: March 10, 2023{% endtrans %}

{% trans %}You are very welcome to visit "OnlineConvert" (hereinafter referred to as this website). In order to allow you to use the services and information of this website with peace of mind, we hereby explain to you the privacy protection policy of this website to protect your rights and interests. Please read the following carefully:{% endtrans %}

{% trans %}We use your personal data to provide this service. By using this service, you agree to our collection and use of data in accordance with this privacy policy. If you do not agree to all or part of it, please do not use this website service.{% endtrans %}

{% trans %}1. THE SCOPE OF APPLICATION OF THE PRIVACY PROTECTION POLICY{% endtrans %}

{% trans %}The content of the privacy protection policy, including how this website handles the personal identification data collected when you use the website services. The privacy protection policy does not apply to related linked websites other than this website, nor does it apply to personnel who are not entrusted or participated in the management of this website.{% endtrans %}

{% trans %}2. METHODS OF COLLECTING, PROCESSING AND USING PERSONAL DATA{% endtrans %}

  • {% trans %}When you visit this website or use the functional services provided by this website, we will consider the nature of the service function, ask you to provide the necessary personal data, and process and use your personal data within the scope of the specific purpose.{% endtrans %}
  • {% trans %}This website will retain your name, email address, contact information, and time of use when you use interactive functions such as service mailboxes and questionnaires.{% endtrans %}
  • {% trans %}During normal browsing, the server will record relevant actions on its own, including the IP address of the connected device, the time of use, the browser used, the browsing and click data records, etc., as a reference for us to improve our website services.{% endtrans %}
{% endif %}
{% if _cms_before_faq_title or _cms_before_faq_content %}
{% if _cms_before_faq_title %}

{{ _cms_before_faq_title }}

{% endif %} {% if _cms_before_faq_content %}
{{ _cms_before_faq_content|safe }}
{% endif %}
{% endif %} {% if page_faqs %}

{% trans %}Frequently Asked Questions{% endtrans %}

{% for faq in page_faqs %}
{{ faq.question }}
{{ faq.answer|safe }}
{% endfor %}
{% endif %}
{% endblock %}