I want a Subscription in Stripe, which the recurring payment facility will be enabled according to the plan created in stripe dashboard. From Dashboard I get a plan id How could I achieve tagging the customer with the plan Id
<form action="/Stripe/Charge" method="POST">
<article>
<label>Amount: $5.00<br/>
Buy </label>
</article>
<script src="//checkout.stripe.com/v2/checkout.js"
class="stripe-button"
data-key="pk_test_...."
data-locale="auto"
data-description="Sample Charge"
data-amount="500">
</script>
<article>
<label>Amount: $29.00 <br/>
Pro Subscription
</label>
</article>
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_..."
data-description="Pro Subscription ($29 per month)"
data-panel-label="Subscribe"
data-label="Subscribe"
data-amount="2900">
</script>
</form>
am I on the correct path? I want to make both subscription and single payment page my doubt is tagging the planId according to users selected plan
