Skip to content

Instantly share code, notes, and snippets.

@ger86
Last active March 7, 2019 10:43
Show Gist options
  • Save ger86/501bebf9fb6545ca99c2f2ebdabed597 to your computer and use it in GitHub Desktop.
Save ger86/501bebf9fb6545ca99c2f2ebdabed597 to your computer and use it in GitHub Desktop.
stripe_choose_subscription.html.twig
{% extends 'base.html.twig' %}
{% block body %}
{% for stripePlan in stripePlans %}
<div>
<form action="{{ path('stripe_subscription_process') }}" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="{{ stripePublicApiKey }}"
data-currency="eur"
data-image="{{ asset('build/images/logo_black.png') }}"
data-name="Nombre"
data-description="Descripción"
data-amount="{{ stripePlan.amountAsStripeString}}"
data-label="¡Dame de alta en {{ stripePlan.name }}!">
</script>
<input type="hidden" value="{{ stripePlan.id }}" name="plan" />
</form>
</div>
{% endfor %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment