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 * müssen ausgefüllt werden

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> müssen ausgefüllt werden</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="Kontaktformular"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="full">
				<label for="firma"><span>Firma</span> 
					<input class="{FIRMA_ERROR}" type="text" id="firma" name="mf_firma" value="{FIRMA}" />
				</label>
			</div>
			<div  class="full">
				<label for="anrede"><span>Anrede <span>*</span></span> 
					<div class="grouping {ANREDE_ERROR}">
						<input required="required" type="checkbox" id="i-anrede1" {ANREDE_HERR} name="mf_r_anrede[]" value="Herr" /><label for="i-anrede1">Herr</label>
						<input required="required" type="checkbox" id="i-anrede2" {ANREDE_FRAU} name="mf_r_anrede[]" value="Frau" /><label for="i-anrede2">Frau</label>
					</div>
				</label>
			</div>
			<div  class="onethird">
				<label for="vorname"><span>Vorname <span>*</span></span> 
					<input required="required" class="{VORNAME_ERROR}" type="text" id="vorname" name="mf_r_vorname" value="{VORNAME}" />
				</label>
			</div>
			<div  class="twothird">
				<label for="nachname"><span>Nachname <span>*</span></span> 
					<input required="required" class="{NACHNAME_ERROR}" type="text" id="nachname" name="mf_r_nachname" value="{NACHNAME}" />
				</label>
			</div>
			<div  class="twothird">
				<label for="straße"><span>Straße</span> 
					<input class="{STRASSE_ERROR}" type="text" id="straße" name="mf_straße" value="{STRASSE}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="nr."><span>Nr. <span>*</span></span> 
					<input required="required" class="{NR._ERROR}" type="text" id="nr." name="mf_r_nr." value="{NR.}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="plz"><span>PLZ <span>*</span></span> 
					<input required="required" class="{PLZ_ERROR}" type="text" id="plz" name="mf_r_plz" value="{PLZ}" />
				</label>
			</div>
			<div  class="twothird">
				<label for="ort"><span>Ort <span>*</span></span> 
					<input required="required" class="{ORT_ERROR}" type="text" id="ort" name="mf_r_ort" value="{ORT}" />
				</label>
			</div>
			<div  class="full">
				<label for="telefon"><span>Telefon <span>*</span></span> 
					<input required="required" class="{TELEFON_ERROR}" type="text" id="telefon" name="mf_r_telefon" value="{TELEFON}" />
				</label>
			</div>
			<div  class="full">
				<label for="e-mail"><span>E-Mail <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="ihre_nachricht"><span>Ihre Nachricht <span>*</span></span> 
					<textarea required="required" rows="5" cols="80" class="{IHRE_NACHRICHT_ERROR}" id="ihre_nachricht" name="mf_r_ihre_nachricht">{IHRE_NACHRICHT}</textarea>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">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)