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
Angaben mit * sind Pflichtfelder

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>Angaben mit <span><span>*</span></span> sind Pflichtfelder</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="Bestellung Hundefutter"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="full">
				<label for="rind_gehackt"><span>RIND gehackt, 500 g, 3.50 CHF (Anzahl)</span> 
					<input class="{RIND_GEHACKT_ERROR}" type="text" id="rind_gehackt" name="mf_rind_gehackt" value="{RIND_GEHACKT}" />
				</label>
			</div>
			<div  class="full">
				<label for="pferd_gehackt"><span>PFERD gehackt, 500 g, 5.00 CHF (Anzahl)</span> 
					<input class="{PFERD_GEHACKT_ERROR}" type="text" id="pferd_gehackt" name="mf_pferd_gehackt" value="{PFERD_GEHACKT}" />
				</label>
			</div>
			<div  class="full">
				<label for="trute_gehackt"><span>TRUTEN gehackt, 500 g, 5,50 CHF (Anzahl)</span> 
					<input class="{TRUTE_GEHACKT_ERROR}" type="text" id="trute_gehackt" name="mf_trute_gehackt" value="{TRUTE_GEHACKT}" />
				</label>
			</div>
			<div  class="full">
				<label for="lamm_gehackt"><span>LAMM gehackt, 500 g, 6.50 CHF (Anzahl)</span> 
					<input class="{LAMM_GEHACKT_ERROR}" type="text" id="lamm_gehackt" name="mf_lamm_gehackt" value="{LAMM_GEHACKT}" />
				</label>
			</div>
			<div  class="full">
				<label for="lachs_gehackt"><span>LACHS gehackt, 500 g,	8.20 CHF (Anzahl)</span> 
					<input class="{LACHS_GEHACKT_ERROR}" type="text" id="lachs_gehackt" name="mf_lachs_gehackt" value="{LACHS_GEHACKT}" />
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Bitte eintragen, Spamschutz</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Bestellung Absenden</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)