From a96cdf31d1df8b6b0d18dbf3b4701f68315d92bc Mon Sep 17 00:00:00 2001 From: interfect Date: Sun, 26 Jan 2025 09:56:28 -0500 Subject: [PATCH] Note maximum password length in USB key dialog The password validation function for Intel AMT passwords enforces a maximum password length, but there's nothing in the UI to tell the user this or to indicate that a provided password is, specifically, too long. This adds the maximum length to the UI. --- views/default3.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default3.handlebars b/views/default3.handlebars index ec3e90c3..5aba0d6a 100644 --- a/views/default3.handlebars +++ b/views/default3.handlebars @@ -5926,7 +5926,7 @@ x += addHtmlFormFloating("New Password*", ''); x += addHtmlFormFloating("New Password*", ''); if ((features2 & 0x00000020) && (currentMesh.mtype == 1) && (serverinfo.amtProvServerMeshId == currentMesh._id)) { x += ''; } // Intel AMT LAN provisioning server is active. - x += '
' + "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric." + '
'; + x += '
' + "* 8-16 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric." + '
'; setModalContent('xxAddAgent', "Intel® AMT ACM", x); showModal('xxAddAgentModal', 'idx_dlgOkButton', showAmtAcmSetupEx); Q('dp1password0').focus();