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
Felder mit * sind zwingend auszufüllen

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>Felder mit <span><span>*</span></span> sind zwingend auszufüllen</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="DVD bzw. USB-Stick - Bestellung"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="full">
				<label for="name"><span>Zu- und Vorname <span>*</span></span> 
					<input required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="adresse1"><span>Straße und Hausnummer <span>*</span></span> 
					<input required="required" class="{ADRESSE1_ERROR}" type="text" id="adresse1" name="mf_r_adresse1" value="{ADRESSE1}" />
				</label>
			</div>
			<div  class="full">
				<label for="adresse2"><span>PLZ und Ort <span>*</span></span> 
					<input required="required" class="{ADRESSE2_ERROR}" type="text" id="adresse2" name="mf_r_adresse2" value="{ADRESSE2}" />
				</label>
			</div>
			<div  class="full">
				<label for="speichermedium"><span>Medium bzw. Datenträger</span> 
					<div class="grouping {SPEICHERMEDIUM_ERROR}">
						<input type="checkbox" id="i-speichermedium1" {SPEICHERMEDIUM_DVD} name="mf_speichermedium[]" value="DVD" /><label for="i-speichermedium1">DVD</label>
						<input type="checkbox" id="i-speichermedium2" {SPEICHERMEDIUM_USB-STICK} name="mf_speichermedium[]" value="USB-Stick" /><label for="i-speichermedium2">USB-Stick</label>
						<input type="checkbox" id="i-speichermedium3" {SPEICHERMEDIUM_BLU-RAY} name="mf_speichermedium[]" value="Blu-Ray" /><label for="i-speichermedium3">Blu-Ray</label>
					</div>
				</label>
			</div>
			<div  class="onethird">
				<label for="anzahl"><span>Gewünschte Anzahl <span>*</span></span> 
					<input required="required" class="{ANZAHL_ERROR}" type="text" id="anzahl" name="mf_r_anzahl" value="{ANZAHL}" />
				</label>
			</div>
			<div  class="full">
				<label for="anmerkungen"><span>Anmerkungen</span> 
					<textarea rows="5" cols="80" class="{ANMERKUNGEN_ERROR}" id="anmerkungen" name="mf_anmerkungen">{ANMERKUNGEN}</textarea>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Bestellung abschicken</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)