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>mit <span><span>*</span></span>-Felder müssen ausgefüllt werden</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="name"><span>Name <span>*</span></span>
<input required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
</label>
</div>
<div class="half">
<label for="vorname"><span>Vorname <span>*</span></span>
<input required="required" class="{VORNAME_ERROR}" type="text" id="vorname" name="mf_r_vorname" value="{VORNAME}" />
</label>
</div>
<div class="twothird">
<label for="adress"><span>Straße, Hausnummer <span>*</span></span>
<input required="required" class="{ADRESS_ERROR}" type="text" id="adress" name="mf_r_adress" value="{ADRESS}" />
</label>
</div>
<div class="half">
<label for="plz"><span>Postleitzahl <span>*</span></span>
<input required="required" class="{PLZ_ERROR}" type="text" id="plz" name="mf_r_plz" value="{PLZ}" />
</label>
</div>
<div class="half">
<label for="ort"><span>Ort <span>*</span></span>
<input required="required" class="{ORT_ERROR}" type="text" id="ort" name="mf_r_ort" value="{ORT}" />
</label>
</div>
<div class="full">
<label for="message"><span>Ihre Nachricht an uns! <span>*</span></span>
<input required="required" class="{MESSAGE_ERROR}" type="text" id="message" name="mf_r_message" value="{MESSAGE}" />
</label>
</div>
<div class="{CAPTCHA_CLASS} full">
<label for="captcha"><span>Bitte zeigen Sie uns das Sie ein Mensch sind</span>
<div class="grouping {CAPTCHA_ERROR}">
{CAPTCHA}
</div>
</label>
</div>
<div class="full">
<button class="submit" name="Submit" type="submit">Senden</button>
</div>
</form>
</div>
</div>