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="reason"><span>Reason for Contact? <span>*</span></span> 
					<select required="required" class="{REASON_ERROR}" id="reason" name="mf_r_reason">
						<option {REASON_SELECTED_I_AM_INTERESTED_IN_DISTRIBUTING_YOUR_PRODUCTS} value="I am interested in distributing your products">I am interested in distributing your products</option>
						<option {REASON_SELECTED_I_WOULD_LIKE_INFORMATION_ABOUT_A_PRODUCT} value="I would like information about a product">I would like information about a product</option>
						<option {REASON_SELECTED_I_HAVE_ANOTHER_QUESTION} value="I have another question">I have another question</option>
					</select>
				</label>
			</div>
			<div  class="full">
				<label for="details"><span>Additional Information <span>*</span></span> 
					<textarea placeholder="Please provide some details about your request" required="required" rows="5" cols="80" class="{DETAILS_ERROR}" id="details" name="mf_r_details">{DETAILS}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="email"><span>Email <span>*</span></span> 
					<input placeholder="Email" required="required" class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="phone"><span>Phone (optional but recommended)</span> 
					<input placeholder="Please provide a phone number" class="{PHONE_ERROR}" type="text" id="phone" name="mf_phone" value="{PHONE}" />
				</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</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)