user2496608
user2496608

Reputation: 125

Can we use custom UI for STRIPE

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

enter image description here

I have be searching about it but could not find about it. Is this possible? Please guide.

Thanks in advance

Upvotes: 5

Views: 2685

Answers (1)

Adam
Adam

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

Related Questions