How do you turn this off browser suggestions on html input?
Just use autocomplete on your inputs:
autocomplete
autocomplete="off"
Something like:
<input type="text" autocomplete="off">
You can always switch back to autocomplete="on" when required.
autocomplete="on"