Понедельник, 03.02.2025, 05:08 Приветствую Вас, Гость
Главная | Форум | Файлы | Блог | Статьи | Видео
[ Новые сообщения · Участники · Правила форума · Поиск · RSS ]
  • Страница 1 из 1
  • 1
Проверка "надежности" пароля
BergДата: Суббота, 22.05.2010, 08:33 | Сообщение # 1
777
Группа: Пользователи
Сообщений: 58
« »
Статус:
Установка: ПУ-->Форма регистрации пользователей,заменяем все на это:

Code
<table border="0" cellspacing="1" cellpadding="2" width="100%" class="manTable" id="siM63">     
<?if($ERROR$)?>     
<tr id="siM1"><td colspan="2" align="center" class="manTdError" id="siM2">$ERROR$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($LOGIN_FL$)?>     
<tr id="siM42"><td class="manTd1" width="35%" id="siM43">$LOGIN_SIGN$</td><td class="manTd2" id="siM44"><input type="text" id="siF13" class="manFlLogin" name="user" value="" size="20" style="width:200px" maxlength="25" onchange="PrepareLoginToChecking();SubmitLoginToCheck()" />       
<iframe name="lf" src="/index/8-0-*" height="1px" width="1px" frameborder="0" onload="GetMessageAboutAvailableLogin()"></iframe>       
<input type="hidden" id="tch" value="*">       
<span id="msg"></span>       
<script>       

function PrepareLoginToChecking()       
{       
var original=("-").split("*")       
var neww=("~").split("*")       
var xy=0       
for(xy=0; xy<=(original.length-1); xy++) {       
var original1="/"+original[xy]+"/g"       
document.getElementById("tch").value = document.getElementById("siF13").value.replace(eval(original1), neww[xy])       
}       
}       
function SubmitLoginToCheck()       
{       
if(document.getElementById("siF13").value.length <= 1)       
{       
document.getElementById('msg').innerHTML='<span style=\"font-size:7pt;\"><img src=\"http://src.ucoz.ru/img/icon/er.png\" align=\"absmiddle\" border=\"0\"> Введите логин</span>';       
return false;       
}       
window.lf.location='/index/8-0-'+document.getElementById("tch").value+'';       
document.getElementById('msg').innerHTML='<span style=\"font-size:7pt;\"><img src=\"http://src.ucoz.ru/img/wd/3/ajaxs.gif\" align=\"absmiddle\" border=\"0\"> Проверка логина...</span>';       
}       
function GetMessageAboutAvailableLogin()       
{       
if(document.getElementById("siF13").value.length <= 1)       
{       
document.getElementById('msg').innerHTML='<span style=\"font-size:7pt;\"><img src=\"http://src.ucoz.ru/img/icon/er.png\" align=\"absmiddle\" border=\"0\"> Введите логин</span>';       
return false;       
}       
if(window.lf.document.getElementById('chUName'))       
{       
document.getElementById('msg').innerHTML='<span style=\"font-size:7pt;\"><img src=\"http://src.ucoz.ru/img/icon/er.png\" align=\"absmiddle\" border=\"0\"> Логин занят</span>';       
}       
else       
{       
document.getElementById('msg').innerHTML='<span style=\"font-size:7pt;\"><img src=\"http://src.ucoz.ru/img/icon/ok.png\" align=\"absmiddle\" border=\"0\"> Логин свободен</span>';       
}       
}       
</script></td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
</script></td></tr><tr></td></tr>     
<script type="text/javascript">     
var m_strUpperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";     
var m_strLowerCase = "abcdefghijklmnopqrstuvwxyz";     
var m_strNumber = "0123456789";     
var m_strCharacters = "_-"     

// Check password     
function checkPassword(strPassword)     
{     
// Reset combination count     
var nScore = 0;     

// Password length     
// -- Less than 4 characters     
if (strPassword.length < 5)     
{     
nScore += 10;     
}     
// -- 5 to 7 characters     
else if (strPassword.length > 4 && strPassword.length < 8)     
{     
nScore += 20;     
}     
// -- 8 or more     
else if (strPassword.length > 7)     
{     
nScore += 50;     
}     

// Letters     
var nUpperCount = countContain(strPassword, m_strUpperCase);     
var nLowerCount = countContain(strPassword, m_strLowerCase);     
var nLowerUpperCount = nUpperCount + nLowerCount;     
// -- Letters are all lower case     
if (nUpperCount == 0 && nLowerCount != 0)     
{     
nScore += 20;     
}     
// -- Letters are upper case and lower case     
else if (nUpperCount != 0 && nLowerCount != 0)     
{     
nScore += 40;     
}     

// Numbers     
var nNumberCount = countContain(strPassword, m_strNumber);     
// -- 1 number     
if (nNumberCount == 1)     
{     
nScore += 20;     
}     
// -- 3 or more numbers     
if (nNumberCount >= 3)     
{     
nScore += 40;     
}     

// Characters     
var nCharacterCount = countContain(strPassword, m_strCharacters);     
// -- 1 character     
if (nCharacterCount == 1)     
{     
nScore += 20;     
}     
// -- More than 1 character     
if (nCharacterCount > 1)     
{     
nScore += 50;     
}     

// Bonus     
// -- Letters and numbers     
if (nNumberCount != 0 && nLowerUpperCount != 0)     
{     
nScore += 4;     
}     
// -- Letters, numbers, and characters     
if (nNumberCount != 0 && nLowerUpperCount != 0 && nCharacterCount != 0)     
{     
nScore += 6;     
}     
// -- Mixed case letters, numbers, and characters     
if (nNumberCount != 0 && nUpperCount != 0 && nLowerCount != 0 && nCharacterCount != 0)     
{     
nScore += 10;     
}     

return nScore;     
}     

// Runs password through check and then updates GUI     
function runPassword(strPassword, strFieldID)     
{     
// Check password     
var nScore = checkPassword(strPassword);     

// Get controls     
var ctlBar = document.getElementById(strFieldID + "_bar");     
var ctlText = document.getElementById(strFieldID + "_text");     
if (!ctlBar || !ctlText)     
return;     

// Set new width     
ctlBar.style.width = nScore + "%";     

// Color and text     
// -- Безупречный     
if (nScore >= 45)     
{     
var strText = "Отличный пароль!";     
var strColor = "#0ca908";     
}     
// -- Хороший     
else if (nScore >= 40)     
{     
var strText = "Хороший";     
var strColor = "#00CCFF";     
}     
// -- Довольно нормальный     
else if (nScore >= 35)     
{     
var strText = "Достаточно неплохо";     
var strColor = "#5a74e3";     
}     
// -- Нормальный     
else if (nScore >= 30)     
{     
var strText = "Нормально";     
var strColor = "#FF6600";     
}     
// -- Слабый     
else if (nScore >= 20)     
{     
var strText = "Слабенько";     
var strColor = "#e7d61a";     
}     
// -- Очень плохой     
else     
{     
var strText = "Ужас. qwerty и то лучше";     
var strColor = "#e71a1a";     
}     
ctlBar.style.backgroundColor = strColor;     
ctlText.innerHTML = "<span style='color: " + strColor + ";'>" + strText + "</span>";     
}     

// Checks a string for a list of characters     
function countContain(strPassword, strCheck)     
{     
// Declare variables     
var nCount = 0;     

for (i = 0; i < strPassword.length; i++)     
{     
if (strCheck.indexOf(strPassword.charAt(i)) > -1)     
{     
nCount++;     
}     
}     

return nCount;     
}     
</script>     
<?if($PASSWORD_FL$)?>     
<?endif?>     
<?if($PASSWORD1_FL$)?>     
<?endif?>     
<table class="manTable" id="siM63" width="100%" border="0" cellpadding="2" cellspacing="1">     
<tbody>     
<tr id="siM45"><td class="manTd1" id="siM46">$PASSWORD_SIGN$</td><td class="manTd2" id="siM47"><input id="siF14" class="manFlPassw" name="password" size="20" style="width: 100%; font-weight: 500; font-style: normal; color: rgb(0, 0, 0);" maxlength="15" onkeyup="runPassword(this.value, 'mypassword');" type="password"></td></tr>     
<tr id="siM48"><td class="manTd1" id="siM49">$PASSWORD1_SIGN$</td><td class="manTd2" id="siM50">$PASSWORD1_FL$</td></tr>     
<tr>     
<td width="130" height="25">Защита пароля:</td>     
<td><b><div id="mypassword_text" align="center">Для начала введите пароль!</div></b>     
<div style="width: 75%;">     
<div id="mypassword_bar" style="border: 1px solid white; font-size: 1px; height: 2px; width: 0px;"></div></div></td>     
</tr>       
<?if($GROUP_FL$)?>     
<tr id="siM70"><td class="manTd1" id="siM71">$GROUP_SIGN$</td><td class="manTd2" id="siM72">$GROUP_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($NAME_FL$)?>     
<tr id="siM51"><td class="manTd1" id="siM52">$NAME_SIGN$</td><td class="manTd2" id="siM53">$NAME_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($EMAIL_FL$)?>     
<tr id="siM54"><td class="manTd1" id="siM55">$EMAIL_SIGN$</td><td class="manTd2" id="siM56">$EMAIL_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($WWW_FL$)?>     
<tr id="siM3"><td class="manTd1" id="siM4">$WWW_SIGN$</td><td class="manTd2" id="siM5">$WWW_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($ICQ_FL$)?>     
<tr id="siM6"><td class="manTd1" id="siM7">$ICQ_SIGN$</td><td class="manTd2" id="siM8">$ICQ_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($AOL_FL$)?>     
<tr id="siM9"><td class="manTd1" id="siM10">$AOL_SIGN$</td><td class="manTd2" id="siM11">$AOL_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($MSN_FL$)?>     
<tr id="siM12"><td class="manTd1" id="siM13">$MSN_SIGN$</td><td class="manTd2" id="siM14">$MSN_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($YAHOO_FL$)?>       
<tr id="siM15"><td class="manTd1" id="siM16">Смайл вашего настроения:</td>       
<td class="manTd2" id="siM17">       
<script>       
function smilepre(sm)       
{ //U.moodSmile - разработка developing.ucoz.ru и WForum.clan.su       
       if(sm == '')       
       document.all.yahoosmilepre.innerHTML = '';       
       else       
       document.all.yahoosmilepre.innerHTML = '<img src="http://wforum.clan.su/sm/'+sm+'.gif">';       
}       
</script>       
<select size="1" id="yahoosmile" name="yahoo" onChange="smilepre(this.value);">       
<option value="">нет</option>       
<option value="1">>(</option>       
<option value="2">:D</option>       
<option value="3">B)</option>       
<option value="4">:'(</option>       
<option value="5"><_<</option>       
<option value="6">^_^</option>       
<option value="7">:(</option>       
<option value="8">:)</option>       
<option value="9">:o</option>       
<option value="10">:p</option>       
<option value="11">%)</option>       
<option value="12">;)</option>       
</select>       
<div id="yahoosmilepre"></div>       
</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>       
<?endif?>     
<?if($BIRTHDAY_FL$)?>     
<tr id="siM30"><td class="manTd1" id="siM31">$BIRTHDAY_SIGN$</td><td class="manTd2" id="siM32">$BIRTHDAY_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($GENDER_FL$)?>     
<tr id="siM27"><td class="manTd1" id="siM28">$GENDER_SIGN$</td><td class="manTd2" id="siM29">$GENDER_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($COUNTRY_FL$)?>     
<tr id="siM18"><td class="manTd1" id="siM19">$COUNTRY_SIGN$</td><td class="manTd2" id="siM20">$COUNTRY_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($STATE_FL$)?>     
<tr id="siM21"><td class="manTd1" id="siM22">$STATE_SIGN$</td><td class="manTd2" id="siM23">$STATE_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($CITY_FL$)?>     
<tr id="siM24"><td class="manTd1" id="siM25">$CITY_SIGN$</td><td class="manTd2" id="siM26">$CITY_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($AVATAR_FL$)?>     
<tr id="siM36"><td class="manTd1" valign="top" id="siM37">$AVATAR_SIGN$</td><td class="manTd2" id="siM38">$AVATAR_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($SIGNATURE_FL$)?>     
<tr id="siM33"><td class="manTd1" id="siM34">$SIGNATURE_SIGN$</td><td class="manTd2" id="siM35">$SIGNATURE_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($SUBSCRIPTION_FL$)?>     
<tr id="siM39"><td class="manTd1" id="siM40">$SUBSCRIPTION_SIGN$</td><td class="manTd2" id="siM41">$SUBSCRIPTION_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($OPTIONS_FL$)?>     
<tr id="siM63"><td class="manTd1" id="siM64">$OPTIONS_SIGN$</td><td class="manTd2" id="siM65">$OPTIONS_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<?if($SECURITY_CODE_FL$)?>     
<tr id="siM60"><td class="manTd1" id="siM61">$SECURITY_CODE_SIGN$</td><td class="manTd2" id="siM62">$SECURITY_CODE_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr>     
<?endif?>     
<tr id="siM64"><td class="manTdBut" colspan="2" align="center" id="siM65"><input class="manFlSbm" id="siF20" type="submit" name="sbm" value="$SUBMIT_SIGN$" /></td></tr>     
</table>


интернет магазин icq

  • Страница 1 из 1
  • 1
Поиск:


Хостинг от uCoz