Advertisement
Jack2

[Web]practice_002.html

Feb 6th, 2013
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.25 KB | None | 0 0
  1. <!DOCYPE html>
  2. <html>
  3.     <head>
  4.         <title>INetCop_Jack2_SignUp</title>
  5.         <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
  6.     </head>
  7.     <body>
  8.         <p>
  9.             &nbsp;= Input Your Information =
  10.         </P>
  11.         <script type="text/javascript">
  12.             function nextPage(num){
  13.                 if(num == 0){
  14.                     document.regist.action="main.html"                 
  15.                 }
  16.                 if(num == 1) {
  17.                     alert("ID is Correct");
  18.                 }
  19.             document.regist.submit();
  20.             }
  21.         </script>
  22.         <form name="regist" method="POST">
  23.             I D :
  24.             <input type="text" name="id" placeholder=" Input Your ID"/>
  25.             <input type="button" name="id_check" value="Check" onClick="nextPage(1)"/><br/>
  26.             P/W :
  27.             <input type="password" name="password" placeholder="*******"/><br/>
  28.             P/W :
  29.             <input type="password" name="password_check" placeholder="one more input your p/w" /><br/>
  30.             PhoneNumber :
  31.             <input type="text" name="phone" placeholder="010-1234-5678" /><br/>
  32.             Email Address :
  33.             <input type="text" name="email" placeholder="jack2@inetcop.org" /></br>
  34.             Comment :
  35.             <textarea name="comment" cols="20" rows="6">Write Comment </textarea></br>
  36.             <input type="submit" name="signup" value="Submit" />
  37.             <input type="button" name="cancel" value="Cancel" onClick="nextPage(0)"/>
  38.         </form>
  39.     </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement