Skip to content

Commit

Permalink
Disable autoComplete for various password fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
votdev committed Nov 1, 2020
1 parent d118b10 commit bdf495c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
Expand Up @@ -83,7 +83,8 @@ Ext.define("OMV.module.admin.privilege.user.user.General", {
xtype: "passwordfield",
name: "password",
fieldLabel: _("Password"),
allowBlank: me.editMode
allowBlank: me.editMode,
autoComplete: false
},{
xtype: "passwordfield",
name: "passwordconf",
Expand Down
Expand Up @@ -293,6 +293,7 @@ Ext.define("OMV.module.admin.service.rsync.Job", {
name: "password",
fieldLabel: _("Password"),
allowBlank: true,
autoComplete: false,
hidden: true,
plugins: [{
ptype: "fieldinfo",
Expand Down
Expand Up @@ -264,7 +264,8 @@ Ext.define("OMV.module.admin.service.rsyncd.module.AuthUser", {
xtype: "passwordfield",
name: "password",
fieldLabel: _("Password"),
allowBlank: false
allowBlank: false,
autoComplete: false
}];
}
});
Expand Down
Expand Up @@ -103,7 +103,8 @@ Ext.define("OMV.module.admin.system.certificate.ssh.Copy", {
xtype: "passwordfield",
name: "password",
fieldLabel: _("Password"),
allowBlank: true
allowBlank: true,
autoComplete: false
}];
},

Expand Down
Expand Up @@ -40,12 +40,14 @@ Ext.define("OMV.module.admin.system.general.AdminPasswd", {
xtype: "passwordfield",
name: "password",
fieldLabel: _("New password"),
allowBlank: true
allowBlank: true,
autoComplete: false
},{
xtype: "passwordfield",
name: "passwordconf",
fieldLabel: _("Confirm password"),
allowBlank: true,
autoComplete: false,
submitValue: false
}];
},
Expand Down
Expand Up @@ -207,7 +207,8 @@ Ext.define("OMV.module.admin.system.notification.Settings", {
xtype: "passwordfield",
name: "password",
fieldLabel: _("Password"),
allowBlank: true
allowBlank: true,
autoComplete: false
}]
},{
xtype: "fieldset",
Expand Down

0 comments on commit bdf495c

Please sign in to comment.