I need to have an input field where the user can only enter 7 numbers, nothing more, nothing less, nothing else.
I need (check for 7 characters)
pattern=".{7,7}"
and (check for only numbers)
pattern="\d*"
working together, but you can't define pattern two times, how would I combine these two together?