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
Bitte alle mit ✲ markierten Felder ausfüllen.

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>Bitte alle mit ✲ markierten Felder ausfüllen.</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="anrede"><span>Anrede <span>*</span></span> 
					<select required="required" class="{ANREDE_ERROR}" id="anrede" name="mf_r_anrede">
						<option {ANREDE_SELECTED_BITTE_WÄHLEN} value="Bitte wählen">Bitte wählen</option>
						<option {ANREDE_SELECTED_FRAU} value="Frau">Frau</option>
						<option {ANREDE_SELECTED_HERR} value="Herr">Herr</option>
					</select>
				</label>
			</div>
			<div  class="full">
				<label for="name"><span>Name/Vorname <span>*</span></span> 
					<input required="required" class="{NAME_ERROR}" type="text" id="name" name="mf_r_name" value="{NAME}" />
				</label>
			</div>
			<div  class="full">
				<label for="betreff"><span>Betreff <span>*</span></span> 
					<input required="required" class="{BETREFF_ERROR}" type="text" id="betreff" name="mf_r_betreff" value="{BETREFF}" />
				</label>
			</div>
			<div  class="full">
				<label for="email"><span>Email <span>*</span></span> 
					<input required="required" class="{EMAIL_ERROR}" type="text" id="email" name="mf_r_email" value="{EMAIL}" />
				</label>
			</div>
			<div  class="full">
				<label for="nachricht"><span>Nachricht <span>*</span></span> 
					<textarea required="required" rows="5" cols="80" class="{NACHRICHT_ERROR}" id="nachricht" name="mf_r_nachricht">{NACHRICHT}</textarea>
				</label>
			</div>
			<div  class="full">
				<label for="_datenschutzerklärung_"><span> Datenschutzerklärung  <span>*</span></span> 
					<div class="grouping {_DATENSCHUTZERKLÄRUNG__ERROR}">
						<input required="required" type="checkbox" id="i-_datenschutzerklärung_1" {_DATENSCHUTZERKLÄRUNG__ICH_STIMME_ZU,_DASS_MEINE_ANGABEN_AUS_DEM_KONTAKTFORMULAR_ZUR_BEANTWORTUNG_MEINER_ANFRAGE_ERHOBEN_UND_VERARBEITET_WERDEN._DIE_DATEN_WERDEN_NACH_ABGESCHLOSSENER_BEARBEITUNG_IHRER_ANFRAGE_GELÖSCHT.__HINWEIS:_SIE_KÖNNEN_IHRE_EINWILLIGUNG_JEDERZEIT_FÜR_DIE_ZUKUNFT_PER_E-MAIL_AN_INFO@WEISSEK.DE_WIDERRUFEN._} name="mf_r__datenschutzerklärung_[]" value="Ich stimme zu, dass meine Angaben aus dem Kontaktformular zur Beantwortung meiner Anfrage erhoben und verarbeitet werden. Die Daten werden nach abgeschlossener Bearbeitung Ihrer Anfrage gelöscht.  Hinweis: Sie können Ihre Einwilligung jederzeit für die Zukunft per E-Mail an info@weissek.de widerrufen. " /><label for="i-_datenschutzerklärung_1">Ich stimme zu, dass meine Angaben aus dem Kontaktformular zur Beantwortung meiner Anfrage erhoben und verarbeitet werden. Die Daten werden nach abgeschlossener Bearbeitung Ihrer Anfrage gelöscht.  Hinweis: Sie können Ihre Einwilligung jederzeit für die Zukunft per E-Mail an info@weissek.de widerrufen. </label>
					</div>
				</label>
			</div>
			<div class="full">
				<button class="submit" name="Submit" type="submit">Absenden</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)