Do you know how to put a minlength on an input of type text?
I tried:
minlength="2"
min="2"
pattern=".{2,}"
pattern="^.{2,}$"
For information, this my input:
<input type="text" class="form-control" name="firstname" id="firstname" placeholder="firstname" pattern="^.{2,}$" >
I tried on Chrome and it doesn't work. But it is working on Firefox. So I will try to search on this side.