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
Mit * gekennzeichnete Felder müssen ausgefüllt werden - Alle anderen Angaben sind freiwillig!

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>Mit <span><span>*</span></span> gekennzeichnete Felder müssen ausgefüllt werden - Alle anderen Angaben sind freiwillig!</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="Online-Anfrage"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="onethird">
				<label for="anrede"><span>Anrede</span> 
					<select class="{ANREDE_ERROR}" id="anrede" name="mf_anrede">
						<option {ANREDE_SELECTED_HERR} value="Herr">Herr</option>
						<option {ANREDE_SELECTED_FRAU} value="Frau">Frau</option>
						<option {ANREDE_SELECTED_DIVERS} value="divers">divers</option>
					</select>
				</label>
			</div>
			<div  class="twothird">
				<label for="name"><span>Vorname, Name <span>*</span></span> 
					<input class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<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="straße/hausnummer"><span>Straße und Hausnummer</span> 
					<input class="{STRASSE/HAUSNUMMER_ERROR}" type="text" id="straße/hausnummer" name="mf_straße/hausnummer" value="{STRASSE/HAUSNUMMER}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="postleitzahl"><span>Postleitzahl</span> 
					<input class="{POSTLEITZAHL_ERROR}" type="text" id="postleitzahl" name="mf_postleitzahl" value="{POSTLEITZAHL}" />
				</label>
			</div>
			<div  class="twothird">
				<label for="ort"><span>Ort</span> 
					<input class="{ORT_ERROR}" type="text" id="ort" name="mf_ort" value="{ORT}" />
				</label>
			</div>
			<div  class="full">
				<label for="telefon"><span>Telefon</span> 
					<input class="{TELEFON_ERROR}" type="text" id="telefon" name="mf_telefon" value="{TELEFON}" />
				</label>
			</div>
			<div  class="full">
				<label for="e-mail"><span>E-Mail <span>*</span></span> 
					<input class="{E-MAIL_ERROR}" type="text" id="e-mail" name="mf_r_e-mail" value="{E-MAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="anfrage_-_nachricht"><span>Anfrage - Nachricht <span>*</span></span> 
					<textarea rows="5" cols="80" class="{ANFRAGE_-_NACHRICHT_ERROR}" id="anfrage_-_nachricht" name="mf_r_anfrage_-_nachricht">{ANFRAGE_-_NACHRICHT}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="datenschutzhinweis"><span>Datenschutzhinweis <span>*</span></span> 
					<div class="grouping {DATENSCHUTZHINWEIS_ERROR}">
						<input type="checkbox" id="i-datenschutzhinweis1" {DATENSCHUTZHINWEIS_DIE_DATENSCHUTZHINWEISE_HABE_ICH_ZUR_KENNTNIS_GENOMMEN._MIT_DER_SPEICHERUNG_MEINER_DATEN_UND_DER_KONTAKTAUFNAHME_PER_E-MAIL_BIN_ICH_EINVERSTANDEN.} name="mf_r_datenschutzhinweis[]" value="Die Datenschutzhinweise habe ich zur Kenntnis genommen. Mit der Speicherung meiner Daten und der Kontaktaufnahme per E-Mail bin ich einverstanden." /><label for="i-datenschutzhinweis1">Die Datenschutzhinweise habe ich zur Kenntnis genommen. Mit der Speicherung meiner Daten und der Kontaktaufnahme per E-Mail bin ich einverstanden.</label>
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Formular 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)