You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The phone number input field was previously accepting letters, which could lead to invalid data being submitted. To resolve this, the input field has been updated with the following changes:
Pattern validation has been added to allow only numbers and the symbols + and -.
- inputmode="numeric" is used to display the numeric keyboard on mobile devices.
onkeypress event has been added to restrict keypress input to numbers and the allowed symbols.``