Miniform Form Creator

Use this id in your miniform module (v0.10 and newer)
Tip: Click and drag the titles to change the order of the fields in your form
Velden met een * zijn verplicht

The form

Below you find the form content you just generated.

Click on the "Copy" button - that becomes visible when you hover the code - to copy the content.

Paste the content in a textfile (use notepad.exe, NOT ms-word) and save it on your computer.

Name the file form_your_name.htt and upload it to the directory {website_root}/modules/miniform/templates/ on your webserver.

<div class="miniform">
	<div class="{MESSAGE_CLASS}">{STATUSMESSAGE}</div>
	<div class="{FORM_CLASS}">
		<small>Velden met een <span><span>*</span></span> zijn verplicht</small>
		<br/>
		<form name="form_{SECTION_ID}" id="form_{SECTION_ID}" method="post" action="{URL}">
			<input name="miniform" type="hidden" value="{SECTION_ID}"/>
			<input name="header" type="hidden" value="Formulier vanuit de website"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="full">
				<label for="naam"><span>Uw naam <span>*</span></span> 
					<input required="required" class="{NAAM_ERROR}" type="text" id="naam" name="mf_r_naam" value="{NAAM}" />
				</label>
			</div>
			<div  class="half">
				<label for="telefoon"><span>Uw telefonnummer <span>*</span></span> 
					<input required="required" class="{TELEFOON_ERROR}" type="text" id="telefoon" name="mf_r_telefoon" value="{TELEFOON}" />
				</label>
			</div>
			<div  class="half">
				<label for="e-mail"><span>Uw e-mail adres <span>*</span></span> 
					<input required="required" class="{E-MAIL_ERROR}" type="text" id="e-mail" name="mf_r_e-mail" value="{E-MAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="bericht"><span>Uw bericht <span>*</span></span> 
					<textarea required="required" rows="5" cols="80" class="{BERICHT_ERROR}" id="bericht" name="mf_r_bericht">{BERICHT}</textarea>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Anti spam controle</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Verstuur</button>
			</div>
		</form>
	</div>
</div>

Use this form


Use the ID below to load the form in your Miniform module (version 0.10 or newer)