Guest User

Untitled

a guest
Dec 9th, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <SCRIPT LANGUAGE="JavaScript">
  2. function validate(){
  3. var username = document.getElementById("uname").value;
  4. var password = document.getElementById("pword").value;
  5. if ( username == "Stetson" && password == "123"){
  6. alert ("Login successfully");
  7. window.location = "home.html"; // Redirecting to other page.
  8. return false;
  9. }
  10. else{
  11.  
  12. alert("Wrong username or password;");
  13. }
  14. }
Add Comment
Please, Sign In to add comment