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="Inscription form"/>
<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
<div class="half">
<label for="name"><span>First name <span>*</span></span>
<input placeholder="nom" required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
</label>
</div>
<div class="half">
<label for="prenom"><span>Last name <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="half">
<label for="adresse"><span>Adress <span>*</span></span>
<input placeholder="adresse" required="required" class="{ADRESSE_ERROR}" type="text" id="adresse" name="mf_r_adresse" value="{ADRESSE}" />
</label>
</div>
<div class="half">
<label for="pays"><span>Country <span>*</span></span>
<input placeholder="pays" required="required" class="{PAYS_ERROR}" type="text" id="pays" name="mf_r_pays" value="{PAYS}" />
</label>
</div>
<div class="full">
<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="model"><span>Car model <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="immatriculation"><span>Car plate <span>*</span></span>
<input placeholder="immatriculation" required="required" class="{IMMATRICULATION_ERROR}" type="text" id="immatriculation" name="mf_r_immatriculation" value="{IMMATRICULATION}" />
</label>
</div>
<div class="full">
<label for="restaurant"><span>Restaurant <span>*</span></span>
<div class="grouping {RESTAURANT_ERROR}">
<input required="required" type="radio" id="i-restaurant1" {RESTAURANT_PRIMAVERA} name="mf_r_restaurant" value="Primavera" /><label for="i-restaurant1">Primavera</label>
<input required="required" type="radio" id="i-restaurant2" {RESTAURANT_EL_TORO} name="mf_r_restaurant" value="El toro" /><label for="i-restaurant2">El toro</label>
<input required="required" type="radio" id="i-restaurant3" {RESTAURANT_SELF_BISTRO} name="mf_r_restaurant" value="Self Bistro" /><label for="i-restaurant3">Self Bistro</label>
</div>
</label>
</div>
<div class="full">
<label for="hotel"><span>Hotel <span>*</span></span>
<div class="grouping {HOTEL_ERROR}">
<input required="required" type="radio" id="i-hotel1" {HOTEL_MANDARINA} name="mf_r_hotel" value="Mandarina" /><label for="i-hotel1">Mandarina</label>
<input required="required" type="radio" id="i-hotel2" {HOTEL_BIVIUS} name="mf_r_hotel" value="Bivius" /><label for="i-hotel2">Bivius</label>
<input required="required" type="radio" id="i-hotel3" {HOTEL_NO_HÔTEL} name="mf_r_hotel" value="No hôtel" /><label for="i-hotel3">No hôtel</label>
</div>
</label>
</div>
<div class="full">
<label for="participation"><span>Your participation <span>*</span></span>
<div class="grouping {PARTICIPATION_ERROR}">
<input required="required" type="radio" id="i-participation1" {PARTICIPATION_1,2_&_3_MAY_2026} name="mf_r_participation" value="1,2 & 3 May 2026" /><label for="i-participation1">1,2 & 3 May 2026</label>
<input required="required" type="radio" id="i-participation2" {PARTICIPATION_ONLY_MAY_2_-2026} name="mf_r_participation" value="Only May 2 -2026" /><label for="i-participation2">Only May 2 -2026</label>
</div>
</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>