Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. $(document).ready(function ()
  4. {
  5. $("#logIn").click(function ()
  6. {
  7. var username = $("#username").val();
  8. var password = $("#pass").val();
  9. if (username == 'test' && password == 'test')
  10. {
  11. window.location = 'index.html';
  12. }
  13. else if (username == null || password == null || username == '' || password == '')
  14. {
  15. window.loacation = 'apple.html';
  16. } else
  17. {
  18. window.location = 'dell.html';
  19. }
  20. });
  21. });
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement