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>Preenchimento Obrigatório<span><span>*</span></span></small> <br/> <form name="form_{SECTION_ID}" id="form_{SECTION_ID}" method="post" action="{URL}" enctype="multipart/form-data"> <input name="miniform" type="hidden" value="{SECTION_ID}"/> <input name="header" type="hidden" value="Formulário Via E-Mail"/> <input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/> <div class="half"> <label for="nome"><span>Nome <span>*</span></span> <input class="{NOME_ERROR}" type="text" id="nome" name="mf_r_nome" value="{NOME}" /> </label> </div> <div class="half"> <label for="email"><span>E-Mail <span>*</span></span> <input class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" /> </label> </div> <div class="half"> <label for="upload"><span>Upload</span> <input class="{UPLOAD_ERROR}" type="file" id="upload" name="mf_upload" value="{UPLOAD}" /> </label> </div> <div class="half"> <label for="sexo"><span>Sexo</span> <div class="grouping {SEXO_ERROR}"> <input type="radio" id="i-sexo1" {SEXO_M} name="mf_sexo" value="M" /><label for="i-sexo1">M</label> <input type="radio" id="i-sexo2" {SEXO_F} name="mf_sexo" value="F" /><label for="i-sexo2">F</label> <input type="radio" id="i-sexo3" {SEXO_I} name="mf_sexo" value="I" /><label for="i-sexo3">I</label> </div> </label> </div> <div class="{CAPTCHA_CLASS} full"> <label for="captcha"><span>Captcha</span> <div class="grouping {CAPTCHA_ERROR}"> {CAPTCHA} </div> </label> </div> <div class="full"> <button class="submit" name="Submit" type="submit">Salvar</button> </div> </form> </div> </div>