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}"/>
<div class="half">
<label for="nom"><span>First Name <span>*</span></span>
<input placeholder="Nom_Name" required="required" class="{NOM_ERROR}" type="text" id="nom" name="mf_r_nom" value="{NOM}" />
</label>
</div>
<div class="half">
<label for="prenom"><span>Last Name <span>*</span></span>
<input placeholder="prenom_vorname" 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 & Nr <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_Land" required="required" class="{PAYS_ERROR}" type="text" id="pays" name="mf_r_pays" value="{PAYS}" />
</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="smartphone"><span>Smartphone Number <span>*</span></span>
<input placeholder="Smartphone Nr" required="required" class="{SMARTPHONE_ERROR}" type="text" id="smartphone" name="mf_r_smartphone" value="{SMARTPHONE}" />
</label>
</div>
<div class="half">
<label for="modele"><span>Car Model <span>*</span></span>
<input placeholder="Modele_Automodel" required="required" class="{MODELE_ERROR}" type="text" id="modele" name="mf_r_modele" value="{MODELE}" />
</label>
</div>
<div class="half">
<label for="plaque_voiture"><span>Car Nr Plate <span>*</span></span>
<input placeholder="Nr plaque, Kennzeichen" required="required" class="{PLAQUE_VOITURE_ERROR}" type="text" id="plaque_voiture" name="mf_r_plaque_voiture" value="{PLAQUE_VOITURE}" />
</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="hotal"><span>Hôtel <span>*</span></span>
<div class="grouping {HOTAL_ERROR}">
<input required="required" type="radio" id="i-hotal1" {HOTAL_MANDARINA} name="mf_r_hotal" value="Mandarina" /><label for="i-hotal1">Mandarina</label>
<input required="required" type="radio" id="i-hotal2" {HOTAL_BIVIUS} name="mf_r_hotal" value="Bivius" /><label for="i-hotal2">Bivius</label>
<input required="required" type="radio" id="i-hotal3" {HOTAL_NO_HOTEL} name="mf_r_hotal" value="No Hotel" /><label for="i-hotal3">No Hotel</label>
</div>
</label>
</div>
<div class="full">
<label for="participation_teilnahme"><span>Vour Participation <span>*</span></span>
<div class="grouping {PARTICIPATION_TEILNAHME_ERROR}">
<input required="required" type="radio" id="i-participation_teilnahme1" {PARTICIPATION_TEILNAHME_ONLY_02/05/2026} name="mf_r_participation_teilnahme" value="Only 02/05/2026" /><label for="i-participation_teilnahme1">Only 02/05/2026</label>
<input required="required" type="radio" id="i-participation_teilnahme2" {PARTICIPATION_TEILNAHME_FULL_WEEK-END} name="mf_r_participation_teilnahme" value="Full week-end" /><label for="i-participation_teilnahme2">Full week-end</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>