{% extends "base.html" %} {% block title %}{% trans %}Upgrade Your Plan – OnlineConvert{% endtrans %}{% endblock %} {% block content %}

{% trans %}Choose Your Plan{% endtrans %}

{% trans %}Unlock more storage, faster conversions, and permanent file storage with a premium plan.{% endtrans %}

{% with messages = get_flashed_messages(with_categories=true) %}{% for cat, msg in messages %}{% endfor %}{% endwith %}
{% for plan in plans %} {% set plan_periods = plan_periods_map.get(plan.id, []) %} {% set yearly_period = plan_periods | selectattr('months', 'equalto', 12) | first %} {% set monthly_period = plan_periods | selectattr('months', 'equalto', 1) | first %}
{% if loop.index == 2 %}
{% trans %}Most Popular{% endtrans %}
{% endif %}

{{ plan.name }}

${{ "%.2f"|format(plan.price_monthly) }} {% trans %}/month{% endtrans %}
{% trans %}Billed monthly{% endtrans %}
  • {% if plan.max_files_per_day == -1 %}{% trans %}Unlimited{% endtrans %}{% else %}{{ plan.max_files_per_day }}{% endif %} {% trans %}files per day{% endtrans %}
  • {% if plan.max_file_size_mb == -1 %}{% trans %}Up to Unlimited per file{% endtrans %}{% else %}{% trans size=plan.max_file_size_mb|string + ' MB' %}Up to {{ size }} per file{% endtrans %}{% endif %}
  • {% if plan.auto_delete_hours == 0 %} {% trans %}Files never auto-deleted{% endtrans %} {% else %} {% trans h=plan.auto_delete_hours %}Files deleted after {{ h }}h{% endtrans %} {% endif %}
  • {% trans %}No ads{% endtrans %}
  • {% if plan.max_conversions_stored == -1 %}{% trans %}Unlimited{% endtrans %}{% else %}{{ plan.max_conversions_stored }}{% endif %} {% trans %}conversions in history{% endtrans %}
{% if user %} {% trans %}Choose Plan{% endtrans %} {% else %} {% trans %}Get Started{% endtrans %} {% endif %}
{% endfor %}

{% trans %}Secure checkout{% endtrans %}  ·  {% trans %}Cancel anytime{% endtrans %}

{% endblock %}