How to allow the input field to accept only image files?
To let users upload files, we need the use of the <input type="file"> tag:
<input type="file" />
Now, I want to only allow images to be uploaded. So, to do that:
<input type="file" accept="image/*">
Use image/png to accept .png images:
<input type...
h.dhairyashah.dev1 min read