What
Interesting choice that the input for a SSN is using type="tel". This poses a11y issues.
I first though it should move to type="number" but gov.uk recently moved their number inputs to:
<input type="text" inputmode="numeric" pattern="[0-9]*">
Investigate if this pattern is worth adopting.
Why
Discovered when investigating #265.
What
Interesting choice that the
inputfor 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.