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
Mit * markierte 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>Mit <span><span>*</span></span> markierte Felder sind Pflichtfelder</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="Formular-Upload"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="onethird">
				<label for="anrede"><span>Anrede <span>*</span></span> 
					<select class="{ANREDE_ERROR}" id="anrede" name="mf_r_anrede">
						<option {ANREDE_SELECTED_HERR} value="Herr">Herr</option>
						<option {ANREDE_SELECTED_FRAU} value="Frau">Frau</option>
						<option {ANREDE_SELECTED_DR.} value="Dr.">Dr.</option>
						<option {ANREDE_SELECTED_PROF._} value="Prof. ">Prof. </option>
						<option {ANREDE_SELECTED_PROF._DR.} value="Prof. Dr.">Prof. Dr.</option>
					</select>
				</label>
			</div>
			<div  class="full">
				<label for="name"><span>Name <span>*</span></span> 
					<input placeholder="Vorname / Name" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="half">
				<label for="bestellnummer"><span>Ihre Bestellnummer</span> 
					<input class="{BESTELLNUMMER_ERROR}" type="text" id="bestellnummer" name="mf_bestellnummer" value="{BESTELLNUMMER}" />
				</label>
			</div>
			<div  class="full">
				<label for="email"><span>eMail <span>*</span></span> 
					<input placeholder="Ihre eMail-Adresse" class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="nachricht"><span>Ihre Nachricht</span> 
					<textarea rows="5" cols="80" class="{NACHRICHT_ERROR}" id="nachricht" name="mf_nachricht">{NACHRICHT}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="upload_1"><span>Upload <span>*</span></span> 
					<input class="{UPLOAD_1_ERROR}" type="file" id="upload_1" name="mf_r_upload_1" value="{UPLOAD_1}" />
				</label>
			</div>
			<div  class="full">
				<label for="upload_2__"><span>Upload 2  </span> 
					<input class="{UPLOAD_2___ERROR}" type="file" id="upload_2__" name="mf_upload_2__" value="{UPLOAD_2__}" />
				</label>
			</div>
			<div  class="full">
				<label for="upload_3"><span>Upload 3</span> 
					<input class="{UPLOAD_3_ERROR}" type="file" id="upload_3" name="mf_upload_3" value="{UPLOAD_3}" />
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Tragen Sie bitte den Sicherheits-Code ein!</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)