If you create a form using HTML inputs and make the input required using the "required" attribute (<input type="text" required>
), what is stopping a user from manually deleting the attribute by using their web browser's built in developer tools or by loading JavaScript by some other means (such as a bookmarklet)?
In other words, how can you ensure the required input remains required?