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> sind zwingend auszufüllen</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="DVD bzw. USB-Stick - Bestellung"/>
<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
<div class="full">
<label for="name"><span>Zu- und Vorname <span>*</span></span>
<input required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
</label>
</div>
<div class="full">
<label for="adresse1"><span>Straße und Hausnummer <span>*</span></span>
<input required="required" class="{ADRESSE1_ERROR}" type="text" id="adresse1" name="mf_r_adresse1" value="{ADRESSE1}" />
</label>
</div>
<div class="full">
<label for="adresse2"><span>PLZ und Ort <span>*</span></span>
<input required="required" class="{ADRESSE2_ERROR}" type="text" id="adresse2" name="mf_r_adresse2" value="{ADRESSE2}" />
</label>
</div>
<div class="full">
<label for="speichermedium"><span>Medium bzw. Datenträger</span>
<div class="grouping {SPEICHERMEDIUM_ERROR}">
<input type="checkbox" id="i-speichermedium1" {SPEICHERMEDIUM_DVD} name="mf_speichermedium[]" value="DVD" /><label for="i-speichermedium1">DVD</label>
<input type="checkbox" id="i-speichermedium2" {SPEICHERMEDIUM_USB-STICK} name="mf_speichermedium[]" value="USB-Stick" /><label for="i-speichermedium2">USB-Stick</label>
<input type="checkbox" id="i-speichermedium3" {SPEICHERMEDIUM_BLU-RAY} name="mf_speichermedium[]" value="Blu-Ray" /><label for="i-speichermedium3">Blu-Ray</label>
</div>
</label>
</div>
<div class="onethird">
<label for="anzahl"><span>Gewünschte Anzahl <span>*</span></span>
<input required="required" class="{ANZAHL_ERROR}" type="text" id="anzahl" name="mf_r_anzahl" value="{ANZAHL}" />
</label>
</div>
<div class="full">
<label for="anmerkungen"><span>Anmerkungen</span>
<textarea rows="5" cols="80" class="{ANMERKUNGEN_ERROR}" id="anmerkungen" name="mf_anmerkungen">{ANMERKUNGEN}</textarea>
</label>
</div>
<div class="full">
<button class="submit" name="Submit" type="submit">Bestellung abschicken</button>
</div>
</form>
</div>
</div>