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 obligatoire *

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>Champs obligatoire <span><span>*</span></span> </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="participation 1 mai 2026"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			{ASPFIELDS}
			<div  class="half">
				<label for="nom"><span>NOM <span>*</span></span> 
					<input placeholder="nom" required="required" class="{NOM_ERROR}" type="text" id="nom" name="mf_r_nom" value="{NOM}" />
				</label>
			</div>
			<div  class="half">
				<label for="prenom"><span>Prenom <span>*</span></span> 
					<input placeholder="prenom" required="required" class="{PRENOM_ERROR}" type="text" id="prenom" name="mf_r_prenom" value="{PRENOM}" />
				</label>
			</div>
			<div  class="full">
				<label for="model"><span>Votre model &amp; plaque voiture <span>*</span></span> 
					<input placeholder="model" required="required" class="{MODEL_ERROR}" type="text" id="model" name="mf_r_model" value="{MODEL}" />
				</label>
			</div>
			<div  class="half">
				<label for="email"><span>E-mail <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="half">
				<label for="numero"><span>Nr GSM <span>*</span></span> 
					<input placeholder="numéro de tel / gsm" required="required" class="{NUMERO_ERROR}" type="text" id="numero" name="mf_r_numero" value="{NUMERO}" />
				</label>
			</div>
			<div  class="full">
				<label for="participation"><span>Participant par voiture <span>*</span></span> 
					<div class="grouping {PARTICIPATION_ERROR}">
						<input required="required" type="radio" id="i-participation1" {PARTICIPATION_1} name="mf_r_participation" value="1" /><label for="i-participation1">1</label>
						<input required="required" type="radio" id="i-participation2" {PARTICIPATION_2} name="mf_r_participation" value="2" /><label for="i-participation2">2</label>
						<input required="required" type="radio" id="i-participation3" {PARTICIPATION_3} name="mf_r_participation" value="3" /><label for="i-participation3">3</label>
					</div>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Tu es humain, lol</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)