Advertisement
Guest User

Login

a guest
May 22nd, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.73 KB | None | 0 0
  1. <html>
  2.   <head>
  3.   <title>Login</title>
  4.   </head>
  5.   <body>
  6.   <h2 align = "center">LOGIN UTENTE</h2>
  7.   <hr>
  8.   <form id = "formDati" action = "check.php" method = "get">
  9.   Utente: <input type = "text" name = "utente" id = "utente"><br>
  10.   Password: <input type = "password" name="pw" id="pw"><br>
  11.  
  12.   <input type = "button" value = "login" onClick = "controlla();">
  13.  
  14.   </form>
  15.   <script>
  16.     function controlla(){
  17.       utente =  document.getElementById("utente").value;
  18.       pw =  document.getElementById("pw").value;
  19.       if (utente == "" || pw == "")
  20.         alert("Non hai inserito tutti i dati richiesti");
  21.       else
  22.         document.getElementById("formDati").submit();  
  23.      
  24.     }
  25.   </script>
  26.  
  27.   </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement