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 Pflichtangaben</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="Zimmer-Reservierung"/>
<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
<div class="onethird">
<label for="anreise"><span>Anreise <span>*</span></span>
<input placeholder="anreise" required="required" class="{ANREISE_ERROR}" type="text" id="anreise" name="mf_r_anreise" value="{ANREISE}" />
</label>
</div>
<div class="onethird">
<label for="abreise"><span>Abreise <span>*</span></span>
<input placeholder="abreise" required="required" class="{ABREISE_ERROR}" type="text" id="abreise" name="mf_r_abreise" value="{ABREISE}" />
</label>
</div>
<div class="onethird">
<label for="erwachsene"><span>Erw <span>*</span></span>
<input placeholder="erwachsene" required="required" class="{ERWACHSENE_ERROR}" type="text" id="erwachsene" name="mf_r_erwachsene" value="{ERWACHSENE}" />
</label>
</div>
<div class="onethird">
<label for="kinder"><span>Kinder</span>
<input placeholder="kinder" class="{KINDER_ERROR}" type="text" id="kinder" name="mf_kinder" value="{KINDER}" />
</label>
</div>
<div class="{CAPTCHA_CLASS} full">
<label for="captcha"><span>Sicherheitsfrage</span>
<div class="grouping {CAPTCHA_ERROR}">
{CAPTCHA}
</div>
</label>
</div>
<div class="full">
<button class="submit" name="Submit" type="submit">absenden</button>
</div>
</form>
</div>
</div>