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
Die mit * markierten Felder 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>Die mit <span><span>*</span></span> markierten Felder 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="Anfrage Ern&auml;hrungs- und Gesundheitsberatung"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="onethird">
				<label for="anrede"><span>Anrede <span>*</span></span> 
					<select required="required" class="{ANREDE_ERROR}" id="anrede" name="mf_r_anrede">
						<option {ANREDE_SELECTED_FRAU} value="Frau">Frau</option>
						<option {ANREDE_SELECTED_HERR} value="Herr">Herr</option>
					</select>
				</label>
			</div>
			<div  class="twothird">
				<label for="name"><span>Vorname, Name <span>*</span></span> 
					<input placeholder="Name" required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="e-mail"><span>E-Mail-Adresse <span>*</span></span> 
					<input placeholder="E-Mail" 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="telefon"><span>Telefonnummer <span>*</span></span> 
					<input placeholder="Telefon" required="required" class="{TELEFON_ERROR}" type="text" id="telefon" name="mf_r_telefon" value="{TELEFON}" />
				</label>
			</div>
			<div  class="full">
				<label for="interesse"><span>Interesse an</span> 
					<div class="grouping {INTERESSE_ERROR}">
						<input type="checkbox" id="i-interesse1" {INTERESSE_ERNÄHRUNGS-EINZELBERATUNG} name="mf_interesse[]" value="Ernährungs-Einzelberatung" /><label for="i-interesse1">Ernährungs-Einzelberatung</label><br>
						<input type="checkbox" id="i-interesse2" {INTERESSE_KURSANGEBOT} name="mf_interesse[]" value="Kursangebot" /><label for="i-interesse2">Kursangebot</label><br>
						<input type="checkbox" id="i-interesse3" {INTERESSE_BASENFASTEN_IN_RERIK} name="mf_interesse[]" value="Basenfasten in Rerik" /><label for="i-interesse3">Basenfasten in Rerik</label><br>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="mitteilung"><span>Mitteilung</span> 
					<textarea placeholder="Mitteilung" rows="5" cols="80" class="{MITTEILUNG_ERROR}" id="mitteilung" name="mf_mitteilung">{MITTEILUNG}</textarea>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Spam-Schutz</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Senden</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)