Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.     <head>
  5.  
  6.         <title>Modulo</title>
  7.        
  8.         <style>
  9.             #Bottone
  10.             {
  11.                 position: absolute;
  12.                 top: 35%;
  13.                 left: 46%;
  14.             }
  15.         </style>
  16.  
  17.         <script src="008_ModuloJS.js"></script>
  18.  
  19.     </head>
  20.  
  21.     <body>
  22.  
  23.         <form name="Modulo" method="POST">
  24.             <center><h1>INSERISCI I TUOI DATI</h1></center>
  25.  
  26.             Nome:
  27.             <input type="text" name="Nome">
  28.  
  29.             Cognome:
  30.             <input type="text" name="Cognome">
  31.  
  32.             Data di Nascita:
  33.             <input type="date" name="Data_Nascita">
  34.  
  35.             Sesso:
  36.             <select name="Sesso">
  37.                 <option value="Uomo">Uomo</option>
  38.                 <option value="Donna">Donna</option>
  39.             </select>
  40.  
  41.             <br><br>
  42.  
  43.             Telefono:
  44.             <input type="tel" name="Telefono">
  45.  
  46.             Email:
  47.             <input type="email" name="Email">
  48.  
  49.             <div id="Inserisci">
  50.                 <center>
  51.                     <br><br><br><b>INSERISCI:</b><br><br><br>
  52.  
  53.                     Username:
  54.                     <input type="text" name="Username">
  55.  
  56.                     Password:
  57.                     <input type="password" name="Password">
  58.  
  59.                     Conferma Password:
  60.                     <input type="password" name="Conferma_Password">
  61.                 </center>
  62.             </div>
  63.  
  64.             <div id="Bottone">
  65.                 <button type="button" name="Invio" onclick="modulo()">Invia i tuoi dati</button>
  66.             </div>
  67.  
  68.         </form>
  69.  
  70.     </body>
  71.  
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement