Advertisement
patryk178

Untitled

Jan 24th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. </head>
  5. <body>
  6. <form name="a">
  7. <input type="text" name="haslo" onkeyup="sila()">
  8. </form>
  9. <div id="czysilne"></div>
  10. <script>
  11. function sila()
  12. {
  13. var haslo = document.a.haslo.value;
  14. var sila;
  15. if(haslo.length>=7 && /[0-9]/.test(haslo))sila="Silne";
  16. else if(haslo.length>=4)sila="Średnie";
  17. else sila="SΕ‚abe";
  18. document.getElementById("czysilne").innerHTML=sila;
  19. }
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement