How forbiden the user to select multiple photos in the photo library on IOS?

With a html input file :

<input type="file" style="display: none" (change)="filesAdded($event)" accept="video/*|image/*" #input>

How can I prevent that

and force user to select just one photo ?

Instead of <input type="file"> could you try using the Camera plugin?