Advertisement
Jack2

[Web]practice_003.html

Feb 6th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>INetCop_Jack2_Login</title>
  5.         <meta http-equiv="Content-Type" content="text/html;charset-utf=8">
  6.     </head>
  7.     <body>
  8.         <script type="text/javascript">
  9.             function movePage(num){
  10.                 if(num == 0){
  11.                     document.login.action="main.html"                  
  12.                 }
  13.                 document.login.submit();
  14.             }
  15.         </script>
  16.         <form name="login" method="POST">
  17.             ID :
  18.             <input type="text" name="id" placeholder=" Input your ID" /><br/>
  19.             P/W :
  20.             <input type="password" name="password" placeholder="********" /><br/>
  21.             <input type="submit" name="login_ok" value="Ok" />
  22.             <input type="button" name="login_cancel" value="Cancel" onclick="movePage(0)" />
  23.         </form>
  24.     </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement