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 * sind Pflicht

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> sind Pflicht</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="Tolle R&auml;der Pr&auml;sentations-Termin"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="full">
				<label for="name"><span>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="mail"><span>Mail <span>*</span></span> 
					<input class="{MAIL_ERROR}" type="text" id="mail" name="mf_r_mail" value="{MAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="telefon"><span>Telefon <span>*</span></span> 
					<input class="{TELEFON_ERROR}" type="text" id="telefon" name="mf_r_telefon" value="{TELEFON}" />
				</label>
			</div>
			<div  class="full">
				<label for="was"><span>Was können wir für Sie tun? (Mehrfachauswahl möglich)  <span>*</span></span> 
					<div class="grouping {WAS_ERROR}">
						<input type="checkbox" id="i-was1" {WAS_BERATUNG} name="mf_r_was[]" value="Beratung" /><label for="i-was1">Beratung</label><br>
						<input type="checkbox" id="i-was2" {WAS_PRÄSENTATION} name="mf_r_was[]" value="Präsentation" /><label for="i-was2">Präsentation</label><br>
						<input type="checkbox" id="i-was3" {WAS_PROBEFAHRT} name="mf_r_was[]" value="Probefahrt" /><label for="i-was3">Probefahrt</label><br>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="betrifft"><span>Betrifft vornehmlich <span>*</span></span> 
					<select class="{BETRIFFT_ERROR}" id="betrifft" name="mf_r_betrifft">
						<option {BETRIFFT_SELECTED_EBIKE_+_PEDELEC} value="eBike + Pedelec">eBike + Pedelec</option>
						<option {BETRIFFT_SELECTED_CARGO} value="Cargo">Cargo</option>
						<option {BETRIFFT_SELECTED_TREKKING_+_TOUREN} value="Trekking + Touren">Trekking + Touren</option>
						<option {BETRIFFT_SELECTED_MOUNTAINBIKE} value="Mountainbike">Mountainbike</option>
						<option {BETRIFFT_SELECTED_KIDS-BIKE_+_ANHÄNGER} value="Kids-Bike + Anhänger">Kids-Bike + Anhänger</option>
					</select>
				</label>
			</div>
			<div  class="full">
				<label for="nachricht"><span>Nachricht (optional)</span> 
					<textarea rows="5" cols="80" class="{NACHRICHT_ERROR}" id="nachricht" name="mf_nachricht">{NACHRICHT}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="rückruf"><span>Rückruf zur Terminabstimmung gewünscht im Zeitraum <span>*</span></span> 
					<div class="grouping {RÜCKRUF_ERROR}">
						<input type="radio" id="i-rückruf1" {RÜCKRUF_9.00_BIS_10.00_UHR_VORMITTAGS} name="mf_r_rückruf" value="9.00 bis 10.00 Uhr vormittags" /><label for="i-rückruf1">9.00 bis 10.00 Uhr vormittags</label><br>
						<input type="radio" id="i-rückruf2" {RÜCKRUF_15.30_BIS_16.30_UHR_NACHMITTAGS} name="mf_r_rückruf" value="15.30 bis 16.30 uhr nachmittags" /><label for="i-rückruf2">15.30 bis 16.30 uhr nachmittags</label>
					</div>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Zeige, dass Du ein Mensch bist &hellip;</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Und ab!</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)