diff options
| author | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-18 10:51:49 +0000 |
|---|---|---|
| committer | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-18 10:51:49 +0000 |
| commit | 16bbc66ebafc6f1a55e47dbda3f3c0f658fe715c (patch) | |
| tree | 55ca18bdc739a1d94841738d8c95284b0a19da93 | |
| parent | efa46688a273c7911da73d9158d4636a3f821d57 (diff) | |
need pull
| -rw-r--r-- | index.html | 35 |
1 files changed, 4 insertions, 31 deletions
@@ -21,6 +21,8 @@ <!--JS--> <script src="assets/js/jquery-2.2.4.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> + <script type="text/javascript" src="front.js" defer></script> + </head> <body> @@ -152,7 +154,7 @@ </section> <section class="modal-body"> - <form role="form"> + <form role="form" action="login"> <div class="form-group"> <input type="text" class="form-control" placeholder="Username"> </div> @@ -181,7 +183,7 @@ </section> <section class="modal-body"> - <form role="form"> + <form role="form" action="signup"> <div class="form-group"> <input type="text" class="form-control" placeholder="First Name"> </div> @@ -220,34 +222,5 @@ </div> </article> - <script> - $(document).ready(function() { - - $("input").keyup( function(event) { - if(event.keyCode == 13){ - $(".go-button").click(); - } - }); - - $(".dropdown").hover(function(){ - $(".dropdown-toggle", this).trigger("click"); - }); - - $(".dropdown-toggle").click(function() { - $(this).next(".dropdown-menu").fadeToggle(200); - }); - - // For the Second level Dropdown menu, highlight the parent - $( ".dropdown-menu" ) - .mouseenter(function() { - $(this).parent('li').addClass('active'); - }) - .mouseleave(function() { - $(this).parent('li').removeClass('active'); - }); - - }); - </script> - </body> </html>
\ No newline at end of file |
