From: Maximiliano Sandoval Date: Mon, 19 Feb 2024 10:37:06 +0000 (+0100) Subject: fix #5251: login: set autocomplete on password and user X-Git-Url: https://git.proxmox.com/?p=pmg-gui.git;a=commitdiff_plain fix #5251: login: set autocomplete on password and user Signed-off-by: Maximiliano Sandoval --- diff --git a/js/LoginView.js b/js/LoginView.js index 63f4099..b5da19a 100644 --- a/js/LoginView.js +++ b/js/LoginView.js @@ -249,6 +249,7 @@ Ext.define('PMG.LoginView', { itemId: 'usernameField', reference: 'usernameField', stateId: 'login-username', + inputAttrTpl: 'autocomplete=username', }, { xtype: 'textfield', @@ -256,6 +257,7 @@ Ext.define('PMG.LoginView', { fieldLabel: gettext('Password'), name: 'password', reference: 'passwordField', + inputAttrTpl: 'autocomplete=current-password', }, { xtype: 'proxmoxLanguageSelector',