I am trying to create a payment form of individual inputs not the one element for the whole card, like
var elements = stripe.elements();
var cardNumberElement = elements.create('cardNumber');
var cardExpiryElement = elements.create('cardExpiry');
var cardCvcElement = elements.create('cardCvc');
but instead it always creates card element, instead of cardNumber it creates a card element and cardExpiry and cardCvc, are skipped.
Can you please answer me if it is possible to have stripe elements other than card element?
I am trying to create a payment form of individual inputs not the one element for the whole card, like
but instead it always creates card element, instead of cardNumber it creates a card element and cardExpiry and cardCvc, are skipped.
Can you please answer me if it is possible to have stripe elements other than card element?