Guest User

Untitled

a guest
Dec 6th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <form>
  11. <input id="user" type="text" name="username"
  12. placeholder="username">
  13. <input id="pass" type="password" id="pass" name="password">
  14. <input id="subm"type="button" name="submit" value="submit"
  15. onclick="checkPswd();">
  16. </form>
  17. </body>
  18.  
  19. <script type="text/javascript">
  20. function checkPswd(){
  21. var confirmpassword = "admin";
  22. var username = document.getElementById('user').value;
  23. var password = document.getElementById("pass").value;
  24.  
  25. if(password == confirmpassword){
  26.  
  27. window.location.href = "redu.html";
  28.  
  29. }else{
  30. alert('try again');
  31. }
  32.  
  33. };
  34.  
  35. </script>
  36. </html>
Add Comment
Please, Sign In to add comment