{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Authorize Payment Method" %}{% endblock %} {% block content %}

{% trans "Authorize Payment Method" %}

{% trans "Payment Plan Details" %}
{% trans "Total Amount" %}: ${{ order.total|floatformat:2 }}
{% trans "Monthly Payment" %}: ${{ monthly_payment|floatformat:2 }}
{% trans "Number of Payments" %}: {{ num_installments }} {% trans "months" %}

{% trans "Order #" %} #{{ order.id }}

{% blocktrans %} We securely store your card token for automatic monthly payments. You can change or cancel anytime from your account settings. {% endblocktrans %}

{% if authorization_url %}
{% csrf_token %}
{% trans "This will be provided after successful authorization" %}
{% else %} {% endif %} {% trans "Back to Order" %}
{% trans "Payment Security" %}
  • ✓ {% trans "256-bit SSL encryption" %}
  • ✓ {% trans "PCI DSS compliant" %}
  • ✓ {% trans "No card details stored on our servers" %}
  • ✓ {% trans "Only used for authorized payments" %}
{% endblock %}