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}" enctype="multipart/form-data"> <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="name"><span>Name <span>*</span></span> <input class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" /> </label> </div> <div class="full"> <label for="telefon"><span>Telefon</span> <input class="{TELEFON_ERROR}" type="text" id="telefon" name="mf_telefon" value="{TELEFON}" /> </label> </div> <div class="full"> <label for="email"><span>EMail</span> <input class="{EMAIL_ERROR}" type="text" id="email" name="mf_email" value="{EMAIL}" /> </label> </div> <div class="full"> <label for="kontakt"><span>Kontakt</span> <div class="grouping {KONTAKT_ERROR}"> <input type="radio" id="i-kontakt1" {KONTAKT_TELEFON} name="mf_kontakt" value="Telefon" /><label for="i-kontakt1">Telefon</label> <input type="radio" id="i-kontakt2" {KONTAKT_EMAIL} name="mf_kontakt" value="EMail" /><label for="i-kontakt2">EMail</label> </div> </label> </div> <div class="half"> <label for="konfiguration"><span>Konfiguration</span> <input class="{KONFIGURATION_ERROR}" type="file" id="konfiguration" name="mf_konfiguration" value="{KONFIGURATION}" /> </label> </div> <div class="half"> <label for="hersteller-code"><span>Hersteller-Code</span> <input class="{HERSTELLER-CODE_ERROR}" type="text" id="hersteller-code" name="mf_hersteller-code" value="{HERSTELLER-CODE}" /> </label> </div> <div class="full"> <label for="mitteilung"><span>Mitteilung</span> <textarea rows="5" cols="80" class="{MITTEILUNG_ERROR}" id="mitteilung" name="mf_mitteilung">{MITTEILUNG}</textarea> </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>