Last active
March 7, 2019 10:43
-
-
Save ger86/501bebf9fb6545ca99c2f2ebdabed597 to your computer and use it in GitHub Desktop.
stripe_choose_subscription.html.twig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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