Miniform Form Creator

Use this id in your miniform module (v0.10 and newer)
Tip: Click and drag the titles to change the order of the fields in your form
Los elementos marcados con * son obligatorios

The form

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>Los elementos marcados con <span><span>*</span></span> son obligatorios</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="Formulario de creador miniform"/>
			<input name="mf_timestamp" type="hidden" value="{DATE} {TIME}"/>
			<div  class="full">
				<label for="name"><span>Nombre <span>*</span></span> 
					<input class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="sexo"><span>Sexo</span> 
					<select class="{SEXO_ERROR}" id="sexo" name="mf_sexo">
						<option {SEXO_SELECTED_MACHO} value="Macho">Macho</option>
						<option {SEXO_SELECTED_HEMBRA} value="Hembra">Hembra</option>
						<option {SEXO_SELECTED_NINGUNO} value="Ninguno">Ninguno</option>
					</select>
				</label>
			</div>
			<div  class="full">
				<label for="pais"><span>País</span> 
					<input class="{PAIS_ERROR}" type="text" id="pais" name="mf_pais" value="{PAIS}" />
				</label>
			</div>
			<div  class="full">
				<label for="email"><span>email <span>*</span></span> 
					<input class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="reemail"><span>repetir email <span>*</span></span> 
					<input class="{REEMAIL_ERROR}" type="text" id="reemail" name="mf_r_reemail" value="{REEMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="mensaje"><span>Mensaje <span>*</span></span> 
					<textarea rows="5" cols="80" class="{MENSAJE_ERROR}" id="mensaje" name="mf_r_mensaje">{MENSAJE}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="miembro"><span>¿eres miembro de Mundo L0c0?</span> 
					<div class="grouping {MIEMBRO_ERROR}">
						<input type="checkbox" id="i-miembro1" {MIEMBRO_SÍ} name="mf_miembro[]" value="Sí" /><label for="i-miembro1">Sí</label>
						<input type="checkbox" id="i-miembro2" {MIEMBRO_NO} name="mf_miembro[]" value="No" /><label for="i-miembro2">No</label>
					</div>
				</label>
			</div>
			<div  class="full">
				<label for="rango"><span>Si eres miembro ¿Cual es tú rango máximo?</span> 
					<select class="{RANGO_ERROR}" id="rango" name="mf_rango">
						<option {RANGO_SELECTED_APRENDIZ} value="Aprendiz">Aprendiz</option>
						<option {RANGO_SELECTED_INICIADO} value="Iniciado">Iniciado</option>
						<option {RANGO_SELECTED_LOQUILLO} value="Loquillo">Loquillo</option>
						<option {RANGO_SELECTED_L0C0} value="L0c0">L0c0</option>
						<option {RANGO_SELECTED_MAESTRO} value="Maestro">Maestro</option>
						<option {RANGO_SELECTED_MINI-ELEGIDO} value="Mini-Elegido">Mini-Elegido</option>
						<option {RANGO_SELECTED_ELEGIDO} value="Elegido">Elegido</option>
					</select>
				</label>
			</div>
			<div class="{CAPTCHA_CLASS} full">
				<label for="captcha"><span>Por favor mu&eacute;stranos que eres humano</span>
					<div class="grouping {CAPTCHA_ERROR}">
					{CAPTCHA}
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Enviar este formulario</button>
			</div>
		</form>
	</div>
</div>

Use this form


Use the ID below to load the form in your Miniform module (version 0.10 or newer)