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>Felder mit <span><span>*</span></span> erforderlich</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}"/>
{ASPFIELDS}
<div class="onethird">
<label for="name"><span>Name</span>
<input class="{NAME_ERROR}" type="text" id="name" name="mf_name" value="{NAME}" />
</label>
</div>
<div class="twothird">
<label for="mail"><span>E-mail Adresse <span>*</span></span>
<input class="{MAIL_ERROR}" type="text" id="mail" name="mf_r_mail" value="{MAIL}" />
</label>
</div>
<div class="full">
<label for="nachricht"><span>Ihre Nachricht</span>
<input class="{NACHRICHT_ERROR}" type="text" id="nachricht" name="mf_nachricht" value="{NACHRICHT}" />
</label>
</div>
<div class="twothird">
<label for="upload"><span>Datei hochladen</span>
<input class="{UPLOAD_ERROR}" type="file" id="upload" name="mf_upload" value="{UPLOAD}" />
</label>
</div>
<div class="twothird">
<label for="fone"><span>Telefon</span>
<input class="{FONE_ERROR}" type="text" id="fone" name="mf_fone" value="{FONE}" />
</label>
</div>
<div class="{CAPTCHA_CLASS} full">
<label for="captcha"><span>Bitte zeig uns, dass du ein Mensch bist</span>
<div class="grouping {CAPTCHA_ERROR}">
{CAPTCHA}
</div>
</label>
</div>
<div class="full">
<button class="submit" name="Submit" type="submit">Nachricht absenden</button>
</div>
</form>
</div>
</div>