This is my current code for the input field. How can I make it display a message stating that the entered number should not start from scratch? thanks
<input type="number" min="10" max="1000" class="form-control" name="payment"
placeholder="enter payment" style="text-align:center" autofocus required/>
<br/>
For example, you cannot dial 020. Only numbers from 10 to 1000.
source
share