Advertisement
Marco333

Untitled

Aug 25th, 2016
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta name="keywords" content="form"/>
  5.     <meta name="author" content="nekolune"/>
  6.     <title>FormWH</title>
  7.     <link rel="stylesheet" type="text/css" href="../css/form.css">
  8.     <script type="text/javascript" src="../js/form.js"></script>
  9. </head>
  10. <body>
  11.     <header><h1 class="title">Ciao, inserisci  i dati obbligatori!</h1></header>
  12.     <form name="WHform" action="../php/registrazione.php" method="post">
  13.         <div class="tab" ><table>
  14.             <tr>
  15.                 <td>EMail:</td>
  16.                 <td><input type="email"  name="username" id="username" placeholder="inserire email"></td>
  17.                 <td><span class="errorId" id="errorId"></span></td>
  18.             </tr>
  19.             <tr>
  20.                 <td>Password:</td>
  21.                 <td><input type="password" name="password" id="password" placeholder="inserire password"></td>
  22.                 <td><span class="errorPassword" id="errorPassword"></span></td>
  23.             </tr>
  24.             <tr>
  25.                 <td>Ripeti Password:</td>  
  26.                 <td><input type="password" name="passwordRepeat" id="passwordRepeat"></td>
  27.                 <td><span class="errorPasswordRepeat" id="errorPasswordRepeat"></span></td>
  28.             </tr>
  29.  
  30.         </table></div>
  31.  
  32.         <div class="roger"><input name ="Submit" type="submit" value="registrati"></div>
  33.     </form>
  34.  
  35.    
  36.    
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement