html Validate the input to ensure that it contains exactly 5 digits from the set [0..9] code example
Example: regex on input
<form>
<label for="username">Username <i>(letters and numbers only, no punctuation or special characters)</i></label><br>
<input name="username" id="username" pattern="[A-Za-z0-9]+">
</form>