{% extends "base.html" %} {% block title %}Add Payment Method - AISBF Dashboard{% endblock %} {% block content %}

Add Payment Method

Choose a payment method to add to your account. You can use this for subscription payments and plan upgrades.

{% if 'stripe' in enabled_gateways or 'paypal' in enabled_gateways %}
{% if 'stripe' in enabled_gateways %}

Credit Card

Secure payment via Stripe

{% endif %} {% if 'paypal' in enabled_gateways %}

PayPal

Connect your PayPal account

{% endif %}
{% endif %} {% if 'bitcoin' in enabled_gateways or 'eth' in enabled_gateways or 'usdt' in enabled_gateways or 'usdc' in enabled_gateways %}

Cryptocurrency Payments

Set cryptocurrency as your default payment method

{% if 'bitcoin' in enabled_gateways %} {% endif %} {% if 'ethereum' in enabled_gateways or 'eth' in enabled_gateways %} {% endif %} {% if 'usdt' in enabled_gateways %} {% endif %} {% if 'usdc' in enabled_gateways %} {% endif %}
{% endif %}
Back to Billing
{% endblock %} {% block extra_js %} {% endblock %}