We Recommend

Smalltalk, Objects, and Design Smalltalk, Objects, and Design
This reference and text treats the Smalltalk programming system and the web of object-oriented ideas within and around it. Thus it is more than a guide to the language; it also examines Smalltalk in its technical and historical setting, and along the way addresses the questions that every Smalltalk developer sooner or later naturally wonders about.


Posted By

designerd on 10/10/06


Tagged


Versions (?)


form


Published in: Other 


  1. <form method="post" action="action_form.php" id="formulier">
  2. <fieldset class="formulier">
  3. <h3>Test formulier</h3>
  4.  
  5. <p class="errors">
  6. </p>
  7. <input type="hidden" name="pageId" value="300" />
  8. <input type="hidden" name="for_formId" value="1" />
  9. <input type="hidden" name="subject" value="Er is een formulier ingestuurd vanuit Standaard HTML Elementen" />
  10.  
  11. <div class="formrow verplichtVeld">
  12. <label for""formField[1]" class="mainlabel">
  13. Naam </label>
  14. <span class="input"> <input type="text" name="formField[1]" id="formField[1]" value="" maxlength="255" size="6" class="textfield medium" />
  15.  
  16. </span>
  17. </div>
  18. <div class="formrow verplichtVeld">
  19. <label for""formField[2]" class="mainlabel">
  20. Opmerkingen </label>
  21. <span class="input"> <textarea name="formField[2]" id="formField[2]" class="textfield large" cols="12" rows="3" ></textarea>
  22. </span>
  23. </div>
  24. <div class="formrow ">
  25. <label for""formField[3]" class="mainlabel">
  26.  
  27. Lijst </label>
  28. <span class="input"> <select name="formField[3]" id="formField[3]" class="select small">
  29. <option value="optie 1" >optie 1</option>
  30. <option value="optie 2" >optie 2</option>
  31. </select>
  32. </span>
  33. </div>
  34. <div class="formrow ">
  35. <label for""formField[4]" class="mainlabel">
  36.  
  37. meerkeuze </label>
  38. <span class="input"><div class="radioGroup">
  39. <input type="radio" name="formField[4]" id="formField4_optie 1" value="optie 1" class="radio" />
  40.  
  41. <label for="formField4_optie 1" class="radioLabel">optie 1</label>
  42. <br />
  43. <input type="radio" name="formField[4]" id="formField4_optie 2" value="optie 2" class="radio" />
  44.  
  45. <label for="formField4_optie 2" class="radioLabel">optie 2</label>
  46. <br />
  47.  
  48. <input type="radio" name="formField[4]" id="formField4_optie 3" value="optie 3" class="radio" />
  49.  
  50. <label for="formField4_optie 3" class="radioLabel">optie 3</label>
  51. <br />
  52. <input type="radio" name="formField[4]" id="formField4_optie 4" value="optie 4" class="radio" />
  53.  
  54. <label for="formField4_optie 4" class="radioLabel">optie 4</label>
  55. <br />
  56. <input type="radio" name="formField[4]" id="formField4_optie 5" value="optie 5" class="radio" />
  57.  
  58. <label for="formField4_optie 5" class="radioLabel">optie 5</label>
  59.  
  60. <br />
  61. </div>
  62. </span>
  63. </div>
  64. <div class="formrow ">
  65. <label for""formField[5]" class="mainlabel">
  66. aanvinken </label>
  67. <span class="input"> <input type="checkbox" name="formField[5]" checked="" class="checkbox" /></span>
  68. </div>
  69. <div class="formrow ">
  70. <label for""formField[6]" class="mainlabel">
  71.  
  72. formulierveld 6 </label>
  73. <span class="input"> <textarea name="formField[6]" id="formField[6]" class="textfield large" cols="12" rows="3" ></textarea>
  74. </span>
  75. </div>
  76. <div class="formrow ">
  77. <label for""formField[7]" class="mainlabel">
  78. test tekst groot </label>
  79. <span class="input"> <input type="text" name="formField[7]" id="formField[7]" value="" maxlength="255" size="6" class="textfield large" />
  80.  
  81. </span>
  82. </div>
  83. <div class="formrow ">
  84. <label for""formField[8]" class="mainlabel">
  85. test tekst middel </label>
  86. <span class="input"> <input type="text" name="formField[8]" id="formField[8]" value="" maxlength="255" size="6" class="textfield medium" />
  87. </span>
  88. </div>
  89. <div class="formrow ">
  90. <label for""formField[9]" class="mainlabel">
  91. test tekst klein </label>
  92.  
  93. <span class="input"> <input type="text" name="formField[9]" id="formField[9]" value="" maxlength="255" size="6" class="textfield small" />
  94. </span>
  95. </div>
  96.  
  97.  
  98. <div class="formrow">
  99. <span class="input"><input type="submit" class="submitbutton" value="verstuur &#62;" id=submit" /></span>
  100. </div>
  101.  
  102. </fieldset>
  103. </form>

Report this snippet 

You need to login to post a comment.