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
* Pflichtfeld

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> Pflichtfeld</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="Bewerbung bei Jedi-Ritter"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="full">
				<label for="spielername"><span>Spielername <span>*</span></span> 
					<input required="required" class="{SPIELERNAME_ERROR}" type="text" id="spielername" name="mf_r_spielername" value="{SPIELERNAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="zeitalter"><span>Zeitalter <span>*</span></span> 
					<input required="required" class="{ZEITALTER_ERROR}" type="text" id="zeitalter" name="mf_r_zeitalter" value="{ZEITALTER}" />
				</label>
			</div>
			<div  class="full">
				<label for="name"><span>Name <span>*</span></span> 
					<input required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="alter"><span>Alter</span> 
					<input class="{ALTER_ERROR}" type="text" id="alter" name="mf_alter" value="{ALTER}" />
				</label>
			</div>
			<div  class="full">
				<label for="tuulech"><span>Tuulech Hauptwelt ?</span> 
					<div class="grouping {TUULECH_ERROR}">
						<input type="checkbox" id="i-tuulech1" {TUULECH_JA} name="mf_tuulech[]" value="JA" /><label for="i-tuulech1">JA</label>
						<input type="checkbox" id="i-tuulech2" {TUULECH_NEIN} name="mf_tuulech[]" value="NEIN" /><label for="i-tuulech2">NEIN</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="ich_bevorzuge"><span>Ich bevorzuge</span> 
					<div class="grouping {ICH_BEVORZUGE_ERROR}">
						<input type="checkbox" id="i-ich_bevorzuge1" {ICH_BEVORZUGE_GG} name="mf_ich_bevorzuge[]" value="GG" /><label for="i-ich_bevorzuge1">GG</label>
						<input type="checkbox" id="i-ich_bevorzuge2" {ICH_BEVORZUGE_GEX} name="mf_ich_bevorzuge[]" value="GEX" /><label for="i-ich_bevorzuge2">GEX</label>
						<input type="checkbox" id="i-ich_bevorzuge3" {ICH_BEVORZUGE_QI} name="mf_ich_bevorzuge[]" value="QI" /><label for="i-ich_bevorzuge3">QI</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="wert"><span>Ich lege wert auf</span> 
					<div class="grouping {WERT_ERROR}">
						<input type="checkbox" id="i-wert1" {WERT_BLAUE_WERTE} name="mf_wert[]" value="Blaue werte" /><label for="i-wert1">Blaue werte</label>
						<input type="checkbox" id="i-wert2" {WERT_ROTE_WERTE} name="mf_wert[]" value="Rote werte" /><label for="i-wert2">Rote werte</label>
						<input type="checkbox" id="i-wert3" {WERT_BLAUE_UND_ROTE_WERTE} name="mf_wert[]" value="Blaue und Rote werte" /><label for="i-wert3">Blaue und Rote werte</label>
						<input type="checkbox" id="i-wert4" {WERT_FP_AUSBAU} name="mf_wert[]" value="FP ausbau" /><label for="i-wert4">FP ausbau</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="ich_spiele"><span>Ich Spiele</span> 
					<div class="grouping {ICH_SPIELE_ERROR}">
						<input type="checkbox" id="i-ich_spiele1" {ICH_SPIELE_MORGENS} name="mf_ich_spiele[]" value="Morgens" /><label for="i-ich_spiele1">Morgens</label>
						<input type="checkbox" id="i-ich_spiele2" {ICH_SPIELE_MITTAGS} name="mf_ich_spiele[]" value="Mittags" /><label for="i-ich_spiele2">Mittags</label>
						<input type="checkbox" id="i-ich_spiele3" {ICH_SPIELE_ABENDS} name="mf_ich_spiele[]" value="Abends" /><label for="i-ich_spiele3">Abends</label>
						<input type="checkbox" id="i-ich_spiele4" {ICH_SPIELE_NACHTS} name="mf_ich_spiele[]" value="Nachts" /><label for="i-ich_spiele4">Nachts</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="erzähle_was_von_dir_"><span>Erzähle was von Dir </span> 
					<textarea rows="5" cols="80" class="{ERZÄHLE_WAS_VON_DIR__ERROR}" id="erzähle_was_von_dir_" name="mf_erzähle_was_von_dir_">{ERZÄHLE_WAS_VON_DIR_}</textarea>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Bewerbung 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)