Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1.  
  2. <html lang="pl">
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6.  
  7. <link rel="stylesheet" type="text/css" href="styl2.css">
  8. <script type="text/javascript">
  9. function sprawdz()
  10. {
  11. var dane=document.getElementById("haslo").value;
  12.  
  13. if(!dane==1)
  14. {
  15. document.getElementById("wynik").style.color="red";
  16. document.getElementById("wynik").innerHTML="HASŁO JEST PUSTE";
  17. }
  18. else if (dane.search("[0-9]")>0 && dane.length>=7)
  19. {
  20. document.getElementById("wynik").style.color="green";
  21. document.getElementById("wynik").innerHTML="HASŁO JEST DOBRE";
  22. }
  23. else if (dane.search("[0-9]")>0 && dane.length>=4 && dane.length<=6)
  24. {
  25. document.getElementById("wynik").style.color="blue";
  26. document.getElementById("wynik").innerHTML="HASŁO JEST ŚREDNIE";
  27. }
  28.  
  29. else
  30. {
  31. document.getElementById("wynik").style.color="yellow";
  32. document.getElementById("wynik").innerHTML="HASŁO JEST SŁABE";
  33. }
  34. }
  35. </script>
  36. </head>
  37. <body>
  38.  
  39. <div id="baner">
  40. <h1><a href="index.html">Weryfikacja jakości hasła</a></h1>
  41. </div>
  42. <div id="pl">
  43. <h2>Wybierz opcję</h2>
  44. <ol>
  45. <li><a href="sprawdz.html">Sprawdź hasło</a></li>
  46. <li><a href="reguly.html">Reguły tworzenia hasła</a></li>
  47. </ol>
  48. </div>
  49. <div id="pp">
  50. <p>Wpisz hasło: <input type="password" id="haslo"><input type="submit" value="Weryfikuj" onclick="sprawdz()"></p>
  51. <p id="wynik"></p>
  52. </div>
  53.  
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement