pborawski

Formularze HTML

May 7th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.04 KB | None | 0 0
  1. <form action="mailto:[email protected]" enctype="text/plain" method="post">
  2.     <input type="hidden" value="[email protected]" name="odbiorca">
  3.     <fieldset><legend> Dane Personalne </legend>
  4.     <p><label for="nazwa"> Nazwisko: <input type="text" name="nazwisko" id="nazwa"></label></p>
  5.     <p><label> Hasło: <input type="password" name="haslo" size="10"> </label>
  6.     <input type="submit" value="OK" />
  7.     </fieldset>
  8.     <fieldset><legend> Opinia: </legend>
  9.     <p><label for="opinia">Co myslisz?</label><br>
  10.     <textarea name="opinia" id="opinia" cols="30" rows="5">
  11.     Napisz swoja opinie.....
  12.     </textarea></p>
  13.     <p> Wybierz: <select name="opcja" multiple="multiple">
  14.         <option value="bdb"> bdb </option>
  15.         <option value="db"> db </option>
  16.         </select></p>
  17.     </fieldset>
  18.     <fieldset>
  19.     <p> Podobalo sie? <br />
  20.     Tak<input type="radio" name="fajne" value="tak" />
  21.     Nie<input type="radio" name="fajne" value="nie" />
  22.     </p>
  23.     </fieldset>
  24.    
  25. </form>
  26. <form enctype="multiport/form-data" method="post">
  27.     <fieldset>
  28.     <input type="file" name="zdjecie">
  29.     </fieldset>
  30. </form>
Advertisement
Add Comment
Please, Sign In to add comment