Reputation: 125
I implemented stripe with the default interface which is all fine.
But now my client wants to use his custom screen to input payment information like this They just want to not use STRIPE's default UI
I have be searching about it but could not find about it. Is this possible? Please guide.
Thanks in advance
Upvotes: 5
Views: 2685
Reputation: 1159
You can use the https://stripe.com/docs/stripe-js method with Elements to achieve this. In addition, you can create your own custom HTML form with whatever data you want (metadata in the customers API) and use it that way.
To learn how to create charges: https://stripe.com/docs/api#charges
To learn how to create customers: https://stripe.com/docs/api#customers
Upvotes: 2