diff --git a/client/components/formbuilder.js b/client/components/formbuilder.js
index 988f43f8..e20bf8c5 100644
--- a/client/components/formbuilder.js
+++ b/client/components/formbuilder.js
@@ -106,7 +106,7 @@ export class FormBuilder extends React.Component {
+ autoComplete="new-password" />
);
}
@@ -137,7 +137,7 @@ const FormElement = (props) => {
onTextChange(e.target.value)} {...id}
name={struct.label} type="text" value={struct.value || ""}
placeholder={ t(struct.placeholder) } readOnly={struct.readonly}
- autoComplete="off" autoCorrect="off" autoCapitalize="off"
+ autoComplete="new-password" autoCorrect="off" autoCapitalize="off"
spellCheck="false" />
);
if (list_id != null) {
@@ -189,7 +189,7 @@ const FormElement = (props) => {
$input = (
onPasswordChange(e.target.value)} {...id} name={struct.label}
type="password" value={struct.value || ""} placeholder={ t(struct.placeholder) }
- autoComplete="off" autoCorrect="off" autoCapitalize="off"
+ autoComplete="new-password" autoCorrect="off" autoCapitalize="off"
spellCheck="false"/>
);
break;
@@ -205,7 +205,7 @@ const FormElement = (props) => {