Limit the size of an file upload

I would like to simply limit the size of a file that a user can upload (10MB). (2 files inputs)

Contact Form>File input

<div class="form-group">
    <div class="container">
        <div class="row">   
            <div class="col-md-6"><input type="file" /></div>
            <div class="col-md-6"><input type="file" /></div>
        </div>
    </div>
</div>


<button class="btn btn-primary btn-block" type="submit">Send</button>

See this thread... https://stackoverflow.com/questions/3717793/javascript-file-upload-size-validation

Note the comment someone made, that you'd need to also limit the file upload on the server-side, which is beyond the scope of Bootstrap Studio.