Advertisement
Blockmanfr

Input

Oct 9th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <form method="post" action="traitement.php">
  2.     <p>
  3.         <label for="truc">Saisissez le truc</label>
  4.         <input type="text" name="truc" id="truc" placeholder="Votre truc ici ?" size = 100 maxlength="50" required/>
  5.     </p>
  6. </form>
  7.  
  8. Les "type"
  9. text
  10. password
  11. number
  12.     min
  13.     max
  14.     step
  15. email
  16. url
  17. tel
  18. search
  19. checkbox(cases à cocher)
  20. radio(case unique à cocher)
  21. range(Glissière)
  22.     min
  23.     max
  24.     step
  25. submit : envoie les données des formuaires
  26. reset : réinitialise le formulaire
  27. image  : submit en image, utilisé avec src
  28. button : Bouton sans fonction par défaut
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement