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 form1"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="full">
				<label for="absendername"><span>Dein Name <span>*</span></span> 
					<input placeholder="Vorname Name" required="required" class="{ABSENDERNAME_ERROR}" type="text" id="absendername" name="mf_r_absendername" value="{ABSENDERNAME}" />
				</label>
			</div>
			<div  class="onethird">
				<label for="status"><span>Status</span> 
					<div class="grouping {STATUS_ERROR}">
						<input type="radio" id="i-status1" {STATUS_PRIVAT} name="mf_status" value="Privat" /><label for="i-status1">Privat</label>
						<input type="radio" id="i-status2" {STATUS_GESCHÄFTLICH} name="mf_status" value="Geschäftlich" /><label for="i-status2">Geschäftlich</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="deinanliegen"><span>Dein Anliegen <span>*</span></span> 
					<textarea placeholder="Frage, Meldung, Auftrag, Anregung, Wunsch" required="required" rows="5" cols="80" class="{DEINANLIEGEN_ERROR}" id="deinanliegen" name="mf_r_deinanliegen">{DEINANLIEGEN}</textarea>
				</label>
			</div>
			<div  class="onethird">
				<label for="deineemail1"><span>Deine Email <span>*</span></span> 
					<input placeholder="xxx@yz.de" required="required" class="{DEINEEMAIL1_ERROR}" type="text" id="deineemail1" name="mf_r_deineemail1" value="{DEINEEMAIL1}" />
				</label>
			</div>
			<div  class="twothird">
				<label for="deinemobilnr"><span>Deine Mobilnr.</span> 
					<input placeholder="0049 173 12345678" class="{DEINEMOBILNR_ERROR}" type="text" id="deinemobilnr" name="mf_deinemobilnr" value="{DEINEMOBILNR}" />
				</label>
			</div>
			<div  class="full">
				<label for="daten"><span>Hier kannst Du Daten mitgeben</span> 
					<input class="{DATEN_ERROR}" type="file" id="daten" name="mf_daten" value="{DATEN}" />
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>L&ouml;sung</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)