Advertisement
Guest User

Untitled

a guest
Apr 10th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.54 KB | None | 0 0
  1. <html>
  2. <SCRIPT LANGUAGE="JavaScript">
  3. function LogIn(){
  4. loggedin=false;
  5. username="";
  6. password="";
  7. username=prompt("Username:","");
  8. username=username.toLowerCase();
  9. password=prompt("Password:","");
  10. password=password.toLowerCase();
  11. if (username=="jeremys" && password=="54gman7g708") {
  12. loggedin=true;
  13. window.open("https://www.sites.google.com/site/aquarianagewiccacoven");
  14. }
  15. if (username=="meghanmedina" && password=="glitter") {
  16. loggedin=true;
  17. window.open("https://www.sites.google.com/site/aquarianagewiccacoven");
  18. }
  19. if (username=="karma0629" && password=="tardis01") {
  20. loggedin=true;
  21. window.open("https://www.sites.google.com/site/aquarianagewiccacoven");
  22. }
  23. if (username=="juliejaberwakkie" && password=="554589") {
  24. loggedin=true;
  25. window.open("https://www.sites.google.com/site/aquarianagewiccacoven");
  26. }
  27. if (username=="lillith" && password=="tito1994") {
  28. loggedin=true;
  29. window.open("https://www.sites.google.com/site/aquarianagewiccacoven")
  30. }
  31. if (username=="sapphirem866" && password=="johnny05") {
  32. loggedin=true;
  33. window.open("https://www.sites.google.com/site/aquarianagewiccacoven")
  34. }
  35. if (username=="thebattygoth" && password=="1314741") {
  36. loggedin=true;
  37. window.open("https://www.sites.google.com/site/aquarianagewiccacoven")
  38. }
  39. if (username=="willowrayne" && password=="0410wd") {
  40. loggedin=true;
  41. window.open("https://www.sites.google.com/site/aquarianagewiccacoven")}
  42. if (loggedin==false) {
  43. alert("Invalid login!");
  44. }
  45. }
  46. </SCRIPT>
  47. <body>
  48. <form><input type=button value="Login" onClick="LogIn()"></form>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement