I am attempting to restrict an input to A-Z and a-z with a minimum of 1 character and a maximum of 20 and it doesn't seem to be working.
<form>
<input name=Last_Name type=text pattern="[A-Za-z]{1,20}" placeholder=Smith>
</form>
Everytime I attempt to submit with a proper input it error with "Please match the requested format".