1<form method="post" action="/post/" autocomplete="off">
2 <!-- The entire form has autocomplete disabled. -->
3</form>
4
5<!-- or you turn it off for just one input -->
6<input type="text" autocomplete="off">
1<input
2 id={field.name}
3 className="form-control"
4 type="text"
5 placeholder={field.name}
6 autoComplete="off"
7 {...fields}/>
8