Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <p>Inserisci la Password per accedere</p>
  2.  
  3. <p><input type="text" id="idbello"></p>
  4. <p><input type="password" id="password"></p>
  5. <button id="verifica">Invia dati</button>
  6.  
  7. <script type="text/javascript">
  8.  
  9. document.getElementById("verifica").onclick = function () {
  10.  
  11. var id = document.getElementById("idbello").value;
  12. var idgiusto = "VIILegione";
  13. var parola = document.getElementById("password").value;
  14. var parolagiusta = "123";
  15.  
  16. if (parola == parolagiusta && id == idgiusto) {
  17.  
  18. alert("Ok");
  19. } else {
  20.  
  21. alert("rip");
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement