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