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="Call me"/> <input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/> <div class="full"> <label for="department"><span>Department <span>*</span></span> <select required="required" class="{DEPARTMENT_ERROR}" id="department" name="mf_r_department"> <option value="">- please choose -</option> <option {DEPARTMENT_SELECTED_CUSTOMER_SUPPORT} value="Customer support">Customer support</option> <option {DEPARTMENT_SELECTED_TECHNICAL_SUPPORT} value="Technical support">Technical support</option> <option {DEPARTMENT_SELECTED_SALES} value="Sales">Sales</option> </select> </label> </div> <div class="onethird"> <label for="name"><span>Name <span>*</span></span> <input required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" /> </label> </div> <div class="twothird"> <label for="phone"><span>Phonenumber <span>*</span></span> <input required="required" class="{PHONE_ERROR}" type="text" id="phone" name="mf_r_phone" value="{PHONE}" /> </label> </div> <div class="full"> <button class="submit" name="Submit" type="submit">Call me</button> </div> </form> </div> </div>