Guest User

Untitled

a guest
Dec 20th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. sample page
  2. </title>
  3. <script>
  4. function check()
  5. {
  6. var username = document.getElementById("name").value;
  7. var password = document.getElementById("pswd").value;
  8. if(username==""&&password=="")
  9. {
  10. alert("enter valid information");
  11. }
  12. else
  13. {
  14. alert("username:"+username);
  15. alert("password:"+password);
  16. }
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. <center>
  22. <P><h1>srkr college</h1></p>
  23. username:
  24. <input type="text" id="name"/><br><br>
  25. password:
  26. <input type="password" id="pswd"/><br><br>
  27. <button type="submit" onclick="check()">login</button>
  28. </center>
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment