Advertisement
Guest User

Untitled

a guest
Sep 14th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5.  
  6.  
  7. <title>FORM</title>
  8.  
  9. <script type="text/javascript" src="../Scripts/Hide_show.js"></script>
  10.  
  11. <meta charset="utf-8" />
  12. </head>
  13. <body>
  14.  
  15. <form style="background-color:greenyellow; width:40%;border:solid 1px; padding :5px"
  16. name="NAME" action="" method="get">
  17.  
  18. <p>
  19. Username: <input id="username" placeholder="Nome" autocomplete="off" name="nome" style="background-color:yellow;position:absolute;left:100px" />
  20. </p>
  21.  
  22. <p>
  23. Password: <input id="password" placeholder="password" name="password" type="password" style="background-color:yellow; position:absolute;left:100px;" />
  24. </p>
  25.  
  26. <button onclick="login()">Fai il log in...</button>
  27.  
  28. <p id="testo" style="visibility:hidden;position:absolute;left:110px">Dati sbagliati...</p>
  29.  
  30.  
  31. <p>
  32. <button onclick="OnFormSubmit()">Click</button>
  33. </p>
  34.  
  35. <table>
  36.  
  37. <tr>
  38.  
  39. <td>
  40.  
  41. Sesso:
  42.  
  43. </td>
  44.  
  45. <td>
  46.  
  47. <input type="radio" name="radioMF" value="M" />M
  48. <input type="radio" name="radioMF" value="F"/>F
  49.  
  50. </td>
  51.  
  52.  
  53. </tr>
  54.  
  55.  
  56.  
  57. </table>
  58.  
  59.  
  60.  
  61. </form>
  62.  
  63.  
  64.  
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement