cancel
Showing results for 
Search instead for 
Did you mean: 

Cybersource fields are not marked with aria-required

Since these fields such as credit card number and cvv are required fields, we need the ability to add the aria-required attribute to the inputs.

kennygrubb
Member
3 REPLIES 3

Hello,

Thank you for pointing out the lack of

aria-required

 attributes on Cybersource fields, such as credit card number and CVV. As these fields are required, we understand the importance of enhancing accessibility. Your suggestion to add the

aria-required

 attribute to these inputs is duly noted.

We will prioritize the implementation of this improvement to ensure a more inclusive user experience. Your feedback is highly valuable in our ongoing efforts to enhance our services. If you have any additional suggestions or come across further issues, please don't hesitate to share them. We are dedicated to improving accessibility and usability for all users.

Best regards,

Michael Jordy

Hi Michael,

Any chance you could supply a timeline on the above?

Thank you!

To address the issue of Cybersource fields lacking the aria-required attribute, you can manually add it to the necessary input fields in the HTML code. For example:

<input type="text" id="creditCardNumber" name="creditCardNumber" aria-required="true" />
<input type="text" id="cvv" name="cvv" aria-required="true" />

This addition will help improve accessibility by indicating to screen readers that these fields are required for user input. Ensure you add this attribute to all the relevant input fields that are required for the Cybersource integration.

Daniel32
Member