Advertisement
Guest User

Untitled

a guest
Aug 13th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset = "utf8">
  5. <title> Ex4 </title>
  6. <script>
  7.  
  8. function init(){
  9. }
  10.  
  11. function checkUser(){
  12. var User = id_user.input.value;
  13. var Pass = id_pass.input.value;
  14.  
  15. if( User == "obama" && Pass == 1234 ){
  16. alert("wrong - try again");
  17. }
  18. else{
  19. alert("wrong - try again");
  20.  
  21. }
  22. }
  23.  
  24.  
  25. </script>
  26. </head>
  27. <body onload="init()">
  28. <h1 id="id_h1"> Please Enter your SuperDuperSpecial code for the Pentagon : </h1>
  29. <h2> USERNAME : </h2>
  30. <input id= "id_user" type = "text" >
  31. <br>
  32. <br>
  33. <h2> PASSWORD :</h2>
  34. <input id= "id_pass" type = "number" >
  35. <br>
  36. <br>
  37. <button id="id_button" onclick="checkUser()"> Log In </button>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement