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>Verplicht veld</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="onethird"> <label for="voornaam"><span>Voornaam: <span>*</span></span> <input required="required" class="{VOORNAAM_ERROR}" type="text" id="voornaam" name="mf_r_voornaam" value="{VOORNAAM}" /> </label> </div> <div class="twothird"> <label for="achternaam"><span>Achternaam: <span>*</span></span> <input required="required" class="{ACHTERNAAM_ERROR}" type="text" id="achternaam" name="mf_r_achternaam" value="{ACHTERNAAM}" /> </label> </div> <div class="full"> <label for="adres"><span>Adres: <span>*</span></span> <input required="required" class="{ADRES_ERROR}" type="text" id="adres" name="mf_r_adres" value="{ADRES}" /> </label> </div> <div class="onethird"> <label for="postcode"><span>Postcode: <span>*</span></span> <input required="required" class="{POSTCODE_ERROR}" type="text" id="postcode" name="mf_r_postcode" value="{POSTCODE}" /> </label> </div> <div class="twothird"> <label for="plaats"><span>Plaats: <span>*</span></span> <input required="required" class="{PLAATS_ERROR}" type="text" id="plaats" name="mf_r_plaats" value="{PLAATS}" /> </label> </div> <div class="onethird"> <label for="stemsoort"><span>Ik zing het liefst als:</span> <select class="{STEMSOORT_ERROR}" id="stemsoort" name="mf_stemsoort"> <option {STEMSOORT_SELECTED_ALT} value="Alt">Alt</option> <option {STEMSOORT_SELECTED_TENOR} value="Tenor">Tenor</option> <option {STEMSOORT_SELECTED_BARITON} value="Bariton">Bariton</option> <option {STEMSOORT_SELECTED_BAS} value="Bas">Bas</option> <option {STEMSOORT_SELECTED_SOPRAAN} value="Sopraan">Sopraan</option> </select> </label> </div> <div class="full"> <button class="submit" name="Submit" type="submit">Verzenden</button> </div> </form> </div> </div>