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
* Champs obligatoires

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><span><span>*</span></span> Champs obligatoires</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="Contact"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="full">
				<label for="nom"><span>Votre nom <span>*</span></span> 
					<input required="required" class="{NOM_ERROR}" type="text" id="nom" name="mf_r_nom" value="{NOM}" />
				</label>
			</div>
			<div  class="full">
				<label for="email"><span>Votre email <span>*</span></span> 
					<input required="required" class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="sujet"><span>Sujet</span> 
					<input class="{SUJET_ERROR}" type="text" id="sujet" name="mf_sujet" value="{SUJET}" />
				</label>
			</div>
			<div  class="full">
				<label for="message"><span>Votre message <span>*</span></span> 
					<textarea required="required" rows="5" cols="80" class="{MESSAGE_ERROR}" id="message" name="mf_r_message">{MESSAGE}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="politique_de_confidentialité"><span>Politique de confidentialité <span>*</span></span> 
					<div class="grouping {POLITIQUE_DE_CONFIDENTIALITÉ_ERROR}">
						<input required="required" type="checkbox" id="i-politique_de_confidentialité1" {POLITIQUE_DE_CONFIDENTIALITÉ_J'AI_PRIS_CONNAISSANCE_DE_LA_POLITIQUE_DE_CONFIDENTIALITÉ._JE_SUIS_D'ACCORD_AVEC_LE_STOCKAGE_DE_MES_DONNÉES_ET_LE_CONTACT_PAR_E-MAIL_OU_PAR_TÉLÉPHONE.} name="mf_r_politique_de_confidentialité[]" value="J'ai pris connaissance de la politique de confidentialité. Je suis d'accord avec le stockage de mes données et le contact par e-mail ou par téléphone." /><label for="i-politique_de_confidentialité1">J'ai pris connaissance de la politique de confidentialité. Je suis d'accord avec le stockage de mes données et le contact par e-mail ou par téléphone.</label>
					</div>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Captcha</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Envoyer</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)