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}">
			<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}"/>
			{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="vorname"><span>Vorname <span>*</span></span> 
					<input class="{VORNAME_ERROR}" type="text" id="vorname" name="mf_r_vorname" value="{VORNAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="message"><span>Ihre Nachricht <span>*</span></span> 
					<textarea rows="5" cols="80" class="{MESSAGE_ERROR}" id="message" name="mf_r_message">{MESSAGE}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="theme"><span>Themen</span> 
					<select class="{THEME_ERROR}" id="theme" name="mf_theme">
						<option {THEME_SELECTED_GESUNDHEIT} value="Gesundheit">Gesundheit</option>
						<option {THEME_SELECTED_SEEFAHRT} value="Seefahrt">Seefahrt</option>
						<option {THEME_SELECTED_FUNK_ALLGEMEIN} value="Funk allgemein">Funk allgemein</option>
						<option {THEME_SELECTED_HAM-OFFICE} value="HAM-OFFICE">HAM-OFFICE</option>
					</select>
				</label>
			</div>
			<div  class="full">
				<label for="contact"><span>Kontakt über: <span>*</span></span> 
					<input placeholder="Tel./Mail ..." class="{CONTACT_ERROR}" type="text" id="contact" name="mf_r_contact" value="{CONTACT}" />
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Verifizieren Sie sich als Mensch.</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Anfrage versende...</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)