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
Items marked with * are required

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>Items marked with <span><span>*</span></span> are required</small>
		<br/>
		<form name="form_{SECTION_ID}" id="form_{SECTION_ID}" method="post" action="{URL}" enctype="multipart/form-data">
			<input name="miniform" type="hidden" value="{SECTION_ID}"/>
			<input name="header" type="hidden" value="Miniform creator form"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="full">
				<label for="name"><span>Dein Name <span>*</span></span> 
					<input placeholder="*" required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="email"><span>Emailadresse <span>*</span></span> 
					<input placeholder="*" required="required" class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="half">
				<label for="sendan"><span>Send an: <span>*</span></span> 
					<select required="required" class="{SENDAN_ERROR}" id="sendan" name="mf_r_sendan">
						<option {SENDAN_SELECTED_ZUM_CHEF} value="zum Chef">zum Chef</option>
						<option {SENDAN_SELECTED_INS_BÜRO+} value="ins Büro+">ins Büro+</option>
					</select>
				</label>
			</div>
			<div  class="half">
				<label for="chef1"><span></span> 
					<div class="grouping {CHEF1_ERROR}">
						<input required="required" type="checkbox" id="i-chef11" {CHEF1_ZUM_CHEF} name="mf_r_chef1[]" value="zum Chef" /><label for="i-chef11">zum Chef</label>
						<input required="required" type="checkbox" id="i-chef12" {CHEF1_INS_BÜRO} name="mf_r_chef1[]" value="ins Büro" /><label for="i-chef12">ins Büro</label><br>
					</div>
				</label>
			</div>
			<div  class="half">
				<label for="auswahl"><span>Auswahl <span>*</span></span> 
					<div class="grouping {AUSWAHL_ERROR}">
						<input required="required" type="radio" id="i-auswahl1" {AUSWAHL_ZUM_CHEF} name="mf_r_auswahl" value="zum Chef" /><label for="i-auswahl1">zum Chef</label>
						<input required="required" type="radio" id="i-auswahl2" {AUSWAHL_INS_BÜRO} name="mf_r_auswahl" value="ins Büro" /><label for="i-auswahl2">ins Büro</label><br>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="problem"><span>Dein Problem <span>*</span></span> 
					<div class="grouping {PROBLEM_ERROR}">
						<input required="required" type="radio" id="i-problem1" {PROBLEM_ANFRAGE} name="mf_r_problem" value="Anfrage" /><label for="i-problem1">Anfrage</label>
						<input required="required" type="radio" id="i-problem2" {PROBLEM_AUFTRAG} name="mf_r_problem" value="Auftrag" /><label for="i-problem2">Auftrag</label>
						<input required="required" type="radio" id="i-problem3" {PROBLEM_BESTELLUNG} name="mf_r_problem" value="Bestellung" /><label for="i-problem3">Bestellung</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="beschreibung"><span>Beschreibung <span>*</span></span> 
					<textarea placeholder="*" required="required" rows="5" cols="80" class="{BESCHREIBUNG_ERROR}" id="beschreibung" name="mf_r_beschreibung">{BESCHREIBUNG}</textarea>
				</label>
			</div>
			<div  class="half">
				<label for="dateiname"><span>Datei senden <span>*</span></span> 
					<input required="required" class="{DATEINAME_ERROR}" type="file" id="dateiname" name="mf_r_dateiname" value="{DATEINAME}" />
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Please show us you are human</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Submit this form / 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)