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}"/> <div class="full"> <label for="fname"><span>Your first Name: <span>*</span></span> <input placeholder="First Name" required="required" class="{FNAME_ERROR}" type="text" id="fname" name="mf_r_fname" value="{FNAME}" /> </label> </div> <div class="full"> <label for="lname"><span>Last Name: <span>*</span></span> <input placeholder="Last name" required="required" class="{LNAME_ERROR}" type="text" id="lname" name="mf_r_lname" value="{LNAME}" /> </label> </div> <div class="full"> <label for="eaddress"><span>E-mail Address <span>*</span></span> <input placeholder="Email Address" required="required" class="{EADDRESS_ERROR}" type="text" id="eaddress" name="mf_r_eaddress" value="{EADDRESS}" /> </label> </div> <div class="full"> <label for="veaddress"><span>Verify Email Address: <span>*</span></span> <input placeholder="Verify Email Address" required="required" class="{VEADDRESS_ERROR}" type="text" id="veaddress" name="mf_r_veaddress" value="{VEADDRESS}" /> </label> </div> <div class="full"> <button class="submit" name="Submit" type="submit">Submit your form to Berry's Advocating</button> </div> </form> </div> </div>