Guest User

Untitled

a guest
Dec 21st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Sample page
  5. </title>
  6. <script>
  7. function check()
  8. {
  9. var username=document.getElementById("uname").value;
  10. var password=document.getElementById("pswd").value;
  11. alert("Username:"+username);
  12. alert("Password:"+password);
  13. }
  14. </script>
  15. </head>
  16. <body>
  17. <form action="/insert" method="get">
  18. <p><h1>SRKR COLLEGE</h1></p>
  19. Username:
  20. <input type="text" id="uname" name="uname"/><br><br>
  21. Password:
  22. <input type="password" id="pswd" name="pswd"/><br><br>
  23. <button type="submit" onclick="check()">login</button>
  24. </form>
  25. </body>
  26. </html>
Add Comment
Please, Sign In to add comment