Make a call to Stripe API which generates a token when a user inputs their card details for the first time. Then submit the token and the rest of your form to your server.
This will enable us to:
make recurring charges
process future payments from same card without user resubmitting card payment info
access the (anonymized) customer id key, which we can use as a unique identifier
Make a call to Stripe API which generates a token when a user inputs their card details for the first time. Then submit the token and the rest of your form to your server.
This will enable us to: