M

Contact

Contact

The whole content, including texts, images, videos, and every medias is under creative commons licence BY SA :

Licence Creative Commons by sa

Click for more information.

For any request, please use this form:

ALX DESIGN

HOME / UX /

Online payment form best practices

The last 5 years, I worked for a payment company with some of the biggest french online shops, to help them integrate the payment form into their website.
I saw good and terrible things, and I would like to share my experience by giving some recommendations.

D

HOME / UX /

Online payment form best practices

The last 5 years, I worked for a payment company with some of the biggest french online shops, to help them integrate the payment form into their website.
I saw good and terrible things, and I would like to share my experience by giving some recommendations.

  1. Do add a TLS certificate on your online shop, and add safety indicators to make your customers feel safe. (For valid reasons)
  2. Do use the standard fields' names to trigger the web browser's autocompletion : https://html.spec.whatwg.org/multipage/forms.html#autofill-field
  3. Do NOT split the card number entry field.
    Even if it's well intentioned, just don't.
    Because:

    However, you can visually format the card number depending on the BIN (See the Stripe jQuery.payment : https://github.com/stripe/jquery.payment).

  4. Do NOT use a dropdown / <select> menu for the card expiry.
    Keep in mind that not all cards expire after only 3 years, I've seen some of them valid for over 35 years, and you don't want to lose transactions by preventing cardholders to enter their card data.
  5. Do use <input type="tel"> for the card number and card CVV entry fields, which will cause the numeric keyboard to be displayed on mobile devices. I should add : <input type="numeric"> is NOT suited for this purpose.
  6. Do provide that new cards may use longer numbers, or longer CVV, then do not limit on a knife edge the maximum length of the fields concerned.
  7. Do try the Stripe jQuery.payment : https://github.com/stripe/jquery.payment to validate the fields of your payment form.

Warning

This is a "sandbox environment" payment form: no actual bank movements will occur.

However, I cannot guarantee the confidentiality of the banking data entered on a Codepen interface, so DO NOT use real bank card data, please use instead one of these test cards:

  • VISA: 4111 1111 1111 1111
  • MasterCard: 5111 1111 1111 1118

With any expiry date, and any 3 digits cryptogram.

See the Pen Be2bill hosted-fields demo (NF) by Alexis Riche (@alexisr) on CodePen.

BACK

Leave a comment ?