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="Reservierung"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="half">
				<label for="name"><span>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="half">
				<label for="vorname"><span>Vorname <span>*</span></span> 
					<input placeholder="Vorname" required="required" class="{VORNAME_ERROR}" type="text" id="vorname" name="mf_r_vorname" value="{VORNAME}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="ort"><span>PLZ, Ort</span> 
					<input placeholder="PLZ Ort" class="{ORT_ERROR}" type="text" id="ort" name="mf_ort" value="{ORT}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="strasse"><span>Straße</span> 
					<input placeholder="Straße" class="{STRASSE_ERROR}" type="text" id="strasse" name="mf_strasse" value="{STRASSE}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="hausnr"><span>Hausnummer</span> 
					<input placeholder="Hausnummer" class="{HAUSNR_ERROR}" type="text" id="hausnr" name="mf_hausnr" value="{HAUSNR}" />
				</label>
			</div>
			<div  class="half">
				<label for="telefon"><span>Telefon</span> 
					<input placeholder="Telefon" class="{TELEFON_ERROR}" type="text" id="telefon" name="mf_telefon" value="{TELEFON}" />
				</label>
			</div>
			<div  class="half">
				<label for="email"><span>E-Mail</span> 
					<input placeholder="E-Mail" class="{EMAIL_ERROR}" type="text" id="email" name="mf_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="besuchstag"><span>Geplanter Besuchtstag <span>*</span></span> 
					<input placeholder="Besuchstag" required="required" class="{BESUCHSTAG_ERROR}" type="text" id="besuchstag" name="mf_r_besuchstag" value="{BESUCHSTAG}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="besuchszeit"><span>Geplante Besuchszeit <span>*</span></span> 
					<input placeholder="Besuchszeit" required="required" class="{BESUCHSZEIT_ERROR}" type="text" id="besuchszeit" name="mf_r_besuchszeit" value="{BESUCHSZEIT}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="personen"><span>Personen <span>*</span></span> 
					<input placeholder="Personen" required="required" class="{PERSONEN_ERROR}" type="text" id="personen" name="mf_r_personen" value="{PERSONEN}" />
				</label>
			</div>
			<div  class="full">
				<label for="mitteilung"><span>Weitere Mitteilungen an uns</span> 
					<textarea placeholder="Weitere Mitteilungen an uns" rows="5" cols="80" class="{MITTEILUNG_ERROR}" id="mitteilung" name="mf_mitteilung">{MITTEILUNG}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="dsgvo"><span>Einverständniserklärung <span>*</span></span> 
					<div class="grouping {DSGVO_ERROR}">
						<input required="required" type="checkbox" id="i-dsgvo1" {DSGVO_ICH_HABE_DIE_DATENSCHUTZHINWEISE_GELESEN_UND_BIN_MIT_DER_ENTSPRECHENDEN_SPEICHERUNG_MEINER_DATEN_EINVERSTANDEN.} name="mf_r_dsgvo[]" value="Ich habe die Datenschutzhinweise gelesen und bin mit der entsprechenden Speicherung meiner Daten einverstanden." /><label for="i-dsgvo1">Ich habe die Datenschutzhinweise gelesen und bin mit der entsprechenden Speicherung meiner Daten einverstanden.</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="kontaktoptions"><span>Zur Reservierungsbestätigung oder für Rückfragen zur Reserviervierung kontaktieren Sie mich bitte (sofern ausgefüllt, ansonsten nicht möglich): <span>*</span></span> 
					<div class="grouping {KONTAKTOPTIONS_ERROR}">
						<input required="required" type="radio" id="i-kontaktoptions1" {KONTAKTOPTIONS_TELEFON} name="mf_r_kontaktoptions" value="Telefon" /><label for="i-kontaktoptions1">Telefon</label>
						<input required="required" type="radio" id="i-kontaktoptions2" {KONTAKTOPTIONS_E-MAIL} name="mf_r_kontaktoptions" value="E-Mail" /><label for="i-kontaktoptions2">E-Mail</label>
						<input required="required" type="radio" id="i-kontaktoptions3" {KONTAKTOPTIONS_TELEFON_ODER_E-MAIL} name="mf_r_kontaktoptions" value="Telefon oder E-Mail" /><label for="i-kontaktoptions3">Telefon oder E-Mail</label>
					</div>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Bitte nutzen Sie das Captcha</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)