{% extends "base.html" %} {% block title %}{% trans %}Complete Payment{% endtrans %} – OnlineConvert{% endblock %} {% block content %}

{% if user %}{% trans %}Choose Your Plan{% endtrans %}{% else %}{% trans %}Account Created!{% endtrans %}{% endif %}

{% if user %}{% trans %}Complete your payment to activate the{% endtrans %}{% else %}{% trans %}One last step — activate the{% endtrans %}{% endif %} {{ plan.name }} {% trans %}plan.{% endtrans %}

{% with messages = get_flashed_messages(with_categories=true) %}{% for cat, msg in messages %}{% endfor %}{% endwith %} {% if periods_data and periods_data|length > 1 %}

{% trans %}Billing Period{% endtrans %}

{% for pd in periods_data %} {% endfor %}
{% endif %}

{% trans %}Order Summary{% endtrans %}

{{ plan.name }}
{% if selected_period %}{{ selected_period.label }}{% else %}{% trans %}Monthly{% endtrans %}{% endif %} {% trans %}billing{% endtrans %}
{% if pricing %} ${{ "%.2f"|format(pricing.per_month) }}{% trans %}/mo{% endtrans %} {% else %} ${{ "%.2f"|format(plan.price_monthly) }}{% trans %}/mo{% endtrans %} {% endif %}
{% if selected_period and selected_period.months > 1 %}
{% trans total="%.2f"|format(pricing.total), months=selected_period.months %}${{ total }} billed every {{ months }} months{% endtrans %}
{% else %} {% endif %}
{% if pricing and pricing.discount_amount > 0 %}
{% trans %}Discount applied{% endtrans %} −${{ "%.2f"|format(pricing.discount_amount) }}
{% else %} {% endif %}

{% trans %}Select Payment Method{% endtrans %}

{% trans %}Payment methods are not configured yet.{% endtrans %}

{% trans %}The admin needs to configure Stripe or PayPal. Your account has been created on the Free plan for now.{% endtrans %}

{% trans %}Skip for now — use the Free plan{% endtrans %}
{% trans %}Secure{% endtrans %} · {% trans %}Cancel anytime{% endtrans %} · {% trans %}Encrypted{% endtrans %}
{% endblock %}