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}"/>
{ASPFIELDS}
<div class="full">
<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="company"><span>Company</span>
<input class="{COMPANY_ERROR}" type="text" id="company" name="mf_company" value="{COMPANY}" />
</label>
</div>
<div class="full">
<label for="street"><span>Street</span>
<input class="{STREET_ERROR}" type="text" id="street" name="mf_street" value="{STREET}" />
</label>
</div>
<div class="full">
<label for="town"><span>Town</span>
<input class="{TOWN_ERROR}" type="text" id="town" name="mf_town" value="{TOWN}" />
</label>
</div>
<div class="full">
<label for="zip_code"><span>Zip Code</span>
<input class="{ZIP_CODE_ERROR}" type="text" id="zip_code" name="mf_zip_code" value="{ZIP_CODE}" />
</label>
</div>
<div class="full">
<label for="country"><span>Country</span>
<input class="{COUNTRY_ERROR}" type="text" id="country" name="mf_country" value="{COUNTRY}" />
</label>
</div>
<div class="full">
<label for="telephone"><span>Telephone</span>
<input class="{TELEPHONE_ERROR}" type="text" id="telephone" name="mf_telephone" value="{TELEPHONE}" />
</label>
</div>
<div class="full">
<label for="fax"><span>Fax</span>
<input class="{FAX_ERROR}" type="text" id="fax" name="mf_fax" value="{FAX}" />
</label>
</div>
<div class="full">
<label for="e-mail"><span>E-Mail <span>*</span></span>
<input class="{E-MAIL_ERROR}" type="text" id="e-mail" name="mf_r_e-mail" value="{E-MAIL}" />
</label>
</div>
<div class="full">
<label for="your_request_or_order"><span>Your request or order <span>*</span></span>
<textarea rows="5" cols="80" class="{YOUR_REQUEST_OR_ORDER_ERROR}" id="your_request_or_order" name="mf_r_your_request_or_order">{YOUR_REQUEST_OR_ORDER}</textarea>
</label>
</div>
<div class="full">
<label for="dataprotection"><span>data protection notice <span>*</span></span>
<div class="grouping {DATAPROTECTION_ERROR}">
<input type="checkbox" id="i-dataprotection1" {DATAPROTECTION_I_TOOK_NOTE_OF_THE_DATA_PROTECTION_NOTICE_AND_I´M_IN_AGREEMENT_WITH_THE_STORAGE_OF_MY_DATA_AND_THE_CONTACTING_BY_E-MAIL.} name="mf_r_dataprotection[]" value="I took note of the data protection notice and I´m in agreement with the storage of my data and the contacting by E-Mail." /><label for="i-dataprotection1">I took note of the data protection notice and I´m in agreement with the storage of my data and the contacting by E-Mail.</label>
</div>
</label>
</div>
<div class="full">
<button class="submit" name="Submit" type="submit">Submit this form</button>
</div>
</form>
</div>
</div>