Skip to content

Instantly share code, notes, and snippets.

@wlwwt
Last active September 30, 2016 07:48
Show Gist options
  • Save wlwwt/2c9adfaafc8115439969e769fc532e20 to your computer and use it in GitHub Desktop.
Save wlwwt/2c9adfaafc8115439969e769fc532e20 to your computer and use it in GitHub Desktop.
Newsletter-Anmeldung
<form action="https://newsletterclient.bavaria-yachts.com" method="post">
<input type="hidden" name="step1-error" value="http://www.bavaria-yachts.com/error1.html">
<input type="hidden" name="step1-success" value="http://www.bavaria-yachts.com/success1.html">
<input type="hidden" name="error" value="http://www.bavaria-yachts.com/error.html">
<input type="hidden" name="success" value="http://www.bavaria-yachts.com/success.html">
<select name="salut" id="salut">
<option value="" disabled selected>Bitte auswählen</option>
<option>Herr</option>
<option>Frau</option>
</select>
<input type="text" class="validate" id="firstname" required="" minlength="2" name="firstname">
<label for="firstname">Vorname</label>
<input type="text" class="validate" id="lastname" required="" minlength="2" name="lastname">
<label for="lastname">Nachname</label>
<input type="text" class="validate" id="email" required="" minlength="2" name="email" value="{email}">
<label for="email">E-Mail-Adresse *</label>
<input type="checkbox" class="filled-in" id="privacy" name="privacy" value="1" />
<label for="privacy">Ich bin mit den AGB einverstanden *</label>
<button type="submit">Anmelden</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment