I'm trying to restrict my username input field to be like that of Instagram's username field where it allows A-Z a-z and .
and 0-9
. I've tried a few regex JS examples but just can't get it to this point.
<label for="username">Username</label>
<input class="form-control" id="username" type="text" name="username">
This is what I have currently, can anyone help?