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
* = 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><span><span>*</span></span> = 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="Kontakt"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="half">
				<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="half">
				<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="_strasse"><span>Straße <span>*</span></span> 
					<input required="required" class="{_STRASSE_ERROR}" type="text" id="_strasse" name="mf_r__strasse" value="{_STRASSE}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="_hausnummer"><span>Hausnummer <span>*</span></span> 
					<input required="required" class="{_HAUSNUMMER_ERROR}" type="text" id="_hausnummer" name="mf_r__hausnummer" value="{_HAUSNUMMER}" />
				</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="half">
				<label for="_telefon"><span>Telefon</span> 
					<input class="{_TELEFON_ERROR}" type="text" id="_telefon" name="mf__telefon" value="{_TELEFON}" />
				</label>
			</div>
			<div  class="half">
				<label for="_mobil"><span>Mobil</span> 
					<input class="{_MOBIL_ERROR}" type="text" id="_mobil" name="mf__mobil" value="{_MOBIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="_email"><span>E-Mail <span>*</span></span> 
					<input required="required" class="{_EMAIL_ERROR}" type="text" id="_email" name="mf_r__email" value="{_EMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="_nachricht"><span>Ihre Nachricht <span>*</span></span> 
					<textarea required="required" rows="5" cols="80" class="{_NACHRICHT_ERROR}" id="_nachricht" name="mf_r__nachricht">{_NACHRICHT}</textarea>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Sind Sie ein Mensch?</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</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)