Jump to content
  • 0

Проверка логина\пароля


LEXS
 Share

Question

Господа проффесионалы и просто знающие люди! Только начинаю с javascript бороться, посмотрите если не затруднит, на предмет правильности и возможности сокращения кода

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

<head>
<title>Проверка пороля</title>

<script language="javascript">
<!--
var logins=new Array('1', '2', '3', '4', '5');
var parols=new Array('5', '4', '3', '2', '1');

function print()
{
var log=document.forma_1.login.value;
var par=document.forma_1.parol.value;

for (i=0; i<logins.length; i++)
{
if (logins[i]==log && parols[i]==par) {alert('Вы вошли как ' + logins[i]); break}
else if (i==logins.length-1) {alert('Данные не верны'); document.forma_1.login.value=''; document.forma_1.parol.value=''}
}

}
//-->
</script>


</head>
<body>

<form action="" name="forma_1">
<b>Ввведите имя:    </b>

<input type="text" maxlength="10" size="11" name="login" value="">



<b>Введите пароль: </b>
<input type="password" maxlength="10" size="11" name="parol" value="">



<input type="button" value="ОтПрАвИтЬ" onClick='print()'>
</form>


</body>
</html>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Да нет массивов с паролями и логинами не будет на странице я просто пока не знаю как их заполучить из базы данных и запихнуть туда при регистрации, хотя это все равно не для проэкта

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy