Note maximum password length in USB key dialog (#6735)

interfect committed Jan 26, 2025 at 13:02 UTC 9d962bc52317a2727145e11140c9f0e0e3fe5ee4
1 file changed +1 -1
views/default3.handlebars
+1 -1
@@ -5926,7 +5926,7 @@
5926 x += addHtmlFormFloating("New Password*", '<input id=dp1password1 type=password class="form-control" autocomplete=off maxlength=32 onchange=validateAmtAcmSetupEx() onkeyup=validateAmtAcmSetupEx() />');
5927 x += addHtmlFormFloating("New Password*", '<input id=dp1password2 type=password class="form-control" autocomplete=off maxlength=32 onchange=validateAmtAcmSetupEx() onkeyup=validateAmtAcmSetupEx() />');
5928 if ((features2 & 0x00000020) && (currentMesh.mtype == 1) && (serverinfo.amtProvServerMeshId == currentMesh._id)) { x += '<label><input id=dp1lanprov type=checkbox class="form-check-input me-2" /> ' + "Use for bare-metal LAN activation." + '</label>'; } // Intel AMT LAN provisioning server is active.
5929 - x += '<div><span id=dp10passNotify style="font-size:10px"> ' + "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric." + '</span></div>';
5929 + x += '<div><span id=dp10passNotify style="font-size:10px"> ' + "* 8-16 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric." + '</span></div>';
5930 setModalContent('xxAddAgent', "Intel&reg; AMT ACM", x);
5931 showModal('xxAddAgentModal', 'idx_dlgOkButton', showAmtAcmSetupEx);
5932 Q('dp1password0').focus();