Вот решил выложить скрипт который при нажатии генерирует вам собственый пароль и пишет какой пароль был сгенерирован Для установки скрипта нужно вставить ко после $PASSWORD1_FL$
Code
<script> Chars = new Array () for (j = 65; j <=122; j++){ if ((j < 91) || (j > 96)) { Chars[Chars.length] = String.fromCharCode(j); } } function GenerateRandomPassword(){ PassLength = 10 + Math.round(5 * Math.random()); Pass = '' for (i = 0; i < PassLength; i++){ ChIndex = Math.round(Chars.length * Math.random()) - 1; if ((Chars[ChIndex]) && (Pass.length < 15)) { Pass += Chars[ChIndex]; } } return Pass; } function NewPass(){ NewRandPass = GenerateRandomPassword(); $('#siF14, #siF15').attr('value', NewRandPass); $('#RandPass').hide('fast').html('Ваш пароль <b>' + NewRandPass + '</b><br><a href="javascript://" style="font-size: 9px; " onclick="NewPass()"><b>Сгенерировать новый пароль</b></a>').show('slow'); }