Pizzaform

master
Andy 2020-02-18 20:33:29 +01:00
parent cb821e8017
commit 0b7253b93d
1 changed files with 40 additions and 3 deletions

View File

@ -13,13 +13,50 @@
<body>
<main>
<h1>Formulare in Webseiten</h1>
<form method="POST" action="formmailer.pl">
<form method="POST" action="https://klubschule.ch/formmailer.pl">
<fieldset id="kontakt">
<legend>Persönliche Daten</legend>
<label for="vorname">Vorname: *</label>
<input type="text" id="vorname" name="vorname" placeholder="Ihr Vorname" required autofocus tabindex="1">
<input type="submit" value="Ab die Post">
<input type="text" id="vorname" name="vorname" placeholder="Ihr Vorname" required
autofocus tabindex="1">
<label for="nachname">Nachname: *</label>
<input type="text" id="nachname" id="nachname"placeholder="Ihr Nachname" required tabindex="2">
<label for="str">Strasse: *</label>
<input type="text" id="str" name="str" placeholder="Strasee / Nr." required tabindex="3">
<label for="plz">Postzeitzahl: *</label>
<input type="text" id="plz" name="plz" placeholder="Postleitzahl" required tabindex="4">
<label for="ort">Ort: *</label>
<input type="text" id="ort" name="ort" placeholder="Ort" required tabindex="5">
<label for="email">E-Mail: </label>
<input type="email" name="email" id="email" placeholder="Email" tabindex="6">
<label for="tel"> Telefon: *</label>
<input type="tel" name="tel" id="tel" placeholder="Telefonnummer" required tabindex="7">
</fieldset>
<fieldset>
<legend>Pizza Bestellung</legend>
<label for="quanti">Pizza Grösse Wählen</label>
<select name="quanti" id="quanti" tabindex="8">
<option value="xl">Grosse Pizza</option>
<option value="m">Mittlere Pizza</option>
<option value="s">Kleine Pizza</option>
</select>
<label for="kaese">Extra Kaese</label>
<input type="checkbox" name="kaese" id="kaese" value="Kaese">
<label for="oliv">Extra Oliven</label>
<input type="checkbox" name="oliv" id="oliv" value="Oliven">
<label for="schinken">Extra Schinken</label>
<input type="checkbox" name="schinken" id="schinken" value="Schinken">
</fieldset>
<fieldset>
<legend>Zahlung</legend>
<label for="bar">Barzahlung</label>
<input type="radio" name="zahl" id="bar"value="Barzahlung" checked>
<label for="karte">Kartenzahlung</label>
<input type="radio" name="zahl" id="karte" value="Kartenzahlung">
<label for="twint">Twint</label>
<input type="radio" name="zahl" id="twint" value="Twint">
</fieldset>
<input type="submit" value="Ab die Post">
</form>
</main>
</body>