We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Interesting choice that the input for a SSN is using type="tel". This poses a11y issues.
input
type="tel"
I first though it should move to type="number" but gov.uk recently moved their number inputs to:
type="number"
<input type="text" inputmode="numeric" pattern="[0-9]*">
Investigate if this pattern is worth adopting.
Discovered when investigating #265.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What
Interesting choice that the
input
for a SSN is usingtype="tel"
. This poses a11y issues.I first though it should move to
type="number"
but gov.uk recently moved their number inputs to:Investigate if this pattern is worth adopting.
Why
Discovered when investigating #265.
The text was updated successfully, but these errors were encountered: