I want to make modern form and I have animated inputs which should be required, because if I remove require, the animation will not work so I want to remove the usual browser window which is showing when I do not fill input.
Can i hide it? If yes, please tell me how.
Yes, you can use the novalidate
attribute:
<form novalidate>
[...]
</form>