I am facing an issue with utilizing the default input email validation in my development project. It seems that Bootstrap, which is being used for the website, has its own validation mechanism. Whenever I begin typing in a Bootstrap input field, an error message is already displayed: https://i.sstatic.net/snWbb.png
On the other hand, the default input type email validation allows for typing before determining if the input is valid, which aligns with what I want to achieve.
My question is, can I disable the Bootstrap form validation and instead use the default one?
<form>
Mail:
<input type="email" name="email">
<input type="submit">
</form>