Advertisement
Guest User

form location

a guest
Jun 11th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Belajar Javascript - Angga Risky</title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8.  
  9. <form name="anggaForm">
  10.  
  11. <label for="username">
  12. Username :
  13. </label>
  14. <input type="text" id="username" required placeholder="Nama User" />
  15.  
  16. <label for="password">
  17. Password :
  18. </label>
  19. <input type="password" id="password" required placeholder="Kata Sandi" />
  20.  
  21. <button type="submit" onclick="masukAkun();">
  22. Masuk
  23. </button>
  24.  
  25. </form>
  26.  
  27. <script>
  28.  
  29. function masukAkun() {
  30. var userName = document.getElementById("username").value;
  31. var kataSandi = document.getElementById("password").value;
  32. if((userName === "angga") && (kataSandi =="123aaa")) {
  33. // alert("Selamat!, Kamu berhasil login!");
  34. window.location = "http://www.google.com";
  35. }
  36. else {
  37. alert("Waduh, Password kamu salah!");
  38. }
  39. }
  40.  
  41. </script>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement