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> gekennzeichnete Felder müssen ausgefüllt werden - Alle anderen Angaben sind freiwillig!</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="DE-Firmenanfrage"/>
<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="firma"><span>Firma</span>
<input class="{FIRMA_ERROR}" type="text" id="firma" name="mf_firma" value="{FIRMA}" />
</label>
</div>
<div class="full">
<label for="straße/hausnummer"><span>Straße und Hausnummer</span>
<input class="{STRASSE/HAUSNUMMER_ERROR}" type="text" id="straße/hausnummer" name="mf_straße/hausnummer" value="{STRASSE/HAUSNUMMER}" />
</label>
</div>
<div class="full">
<label for="ort"><span>Ort</span>
<input class="{ORT_ERROR}" type="text" id="ort" name="mf_ort" value="{ORT}" />
</label>
</div>
<div class="full">
<label for="postleitzahl"><span>Postleitzahl</span>
<input class="{POSTLEITZAHL_ERROR}" type="text" id="postleitzahl" name="mf_postleitzahl" value="{POSTLEITZAHL}" />
</label>
</div>
<div class="full">
<label for="land"><span>Land</span>
<input class="{LAND_ERROR}" type="text" id="land" name="mf_land" value="{LAND}" />
</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="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="anfrage_/_nachricht"><span>Anfrage / Nachricht <span>*</span></span>
<textarea rows="5" cols="80" class="{ANFRAGE_/_NACHRICHT_ERROR}" id="anfrage_/_nachricht" name="mf_r_anfrage_/_nachricht">{ANFRAGE_/_NACHRICHT}</textarea>
</label>
</div>
<div class="full">
<button class="submit" name="Submit" type="submit">Formular absenden</button>
</div>
</form>
</div>
</div>