Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset='utf-8'>
  5. <title>Zadanko</title>
  6. </head>
  7. <body>
  8. <input type="text" id="haslo">
  9. <p id="zawartosc"></p>
  10. <input type="button" id="przycisk" value="Sprawdź">
  11.  
  12. <script>
  13. function yeah(){
  14. haslo=document.getElementById("haslo").value;
  15. if(haslo.length==0){
  16. document.getElementById("zawartosc").style="color:red";
  17. document.getElementById("zawartosc").innerHTML="WPISZ HASŁO!";
  18. }
  19. else if(/[1-9]/.test(haslo) && (haslo.length>6)){
  20. document.getElementById("zawartosc").style="color:green";
  21. document.getElementById("zawartosc").innerHTML="DOBRE";
  22. }
  23. else if(/[1-9]/.test(haslo) && (haslo.length>3) && (haslo.length<7)){
  24. document.getElementById("zawartosc").style="color:blue";
  25. document.getElementById("zawartosc").innerHTML="ŚREDNIE";
  26. }
  27. else{
  28. document.getElementById("zawartosc").style="color:yellow";
  29. document.getElementById("zawartosc").innerHTML="SŁABE";
  30. }
  31. }
  32. document.getElementById("przycisk").addEventListener("click",yeah);
  33.  
  34.  
  35. </script>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement