{% extends "saas/base.html" %} {% block saas_title %} {{organization.printable_name}} Payment Processor {% endblock %} {% block saas_content %}
{% if bank_name and bank_name != 'N/A' %}

Connected Processor

You will be able to create charges and payout funds with this processor.

Institution
{{bank_name}}
Account Number
{{last4}}
{% if urls.provider.deauthorize_processor %}
{% endif %}
{% else %} {% if urls.authorize_processor %}

Stripe Account

Connect your Stripe account

You will be able to create charges on credit cards.

If you already have a Stripe account, we recommend that you first login into your Stripe account before clicking the button below.

Login to Stripe »

Connect
{% endif %} {% if not urls.authorize_processor %} {# dealing with a misconfigured platform #}

Configure Settings

The configuration variables STRIPE_CLIENT_ID, STRIPE_PUB_KEY and STRIPE_PRIV_KEY are invalid. You will need to retrieve the StripeConnect ClientID, and the pair of publishable/private API keys for your Stripe account on stripe.com.

Once you have those keys, write them in the credentials configuration file and restart the server.

{% endif %} {% endif %}
{% endblock %}