forked from WEB-IMB-WS2526/lab-development-imb
loesungen 04
parent
cf3de64554
commit
f8a77ea1e9
|
|
@ -1,38 +1,72 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8"Y>
|
||||
<title>Workshop</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form method="POST" action="https://web-637691723779.europe-west2.run.app/registrierung">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Workshop-Anmeldung</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Workshopanmeldung</h1>
|
||||
|
||||
<form action="https://web-637691723779.europe-west2.run.app/registrierung" method="POST">
|
||||
<fieldset>
|
||||
<legend>Persönliche Angaben:</legend>
|
||||
<label for="vorname">Vorname:</label><br>
|
||||
<input type="text" name="vorname" id="vorname" placeholder="Vorname"> <br>
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" name="name" id="name" placeholder="Nachname"> <br>
|
||||
<label for="email">E-Mail:</label> <br>
|
||||
<input type="email" name="email" id="email"> <br>
|
||||
<label for="tel">Telefon:</label> <br>
|
||||
<input type="tel" name="tel" id="tel"><br>
|
||||
<input type="text" id="vorname" name="vorname" placeholder="Vorname"><br><br>
|
||||
|
||||
<label for="nachname">Nachname:</label><br>
|
||||
<input type="text" id="nachname" name="nachname" placeholder="Nachname"><br><br>
|
||||
|
||||
<label for="email">E-Mail:</label><br>
|
||||
<input type="email" id="email" name="email"><br><br>
|
||||
|
||||
<label for="handy">Handynummer:</label><br>
|
||||
<input type="tel" id="handy" name="handy"><br>
|
||||
</fieldset>
|
||||
|
||||
<br>
|
||||
|
||||
<fieldset>
|
||||
<legend>Kursauswahl:</legend>
|
||||
<label for="kurs">Kurs:</label>
|
||||
<input type="text" name="kurs" id="kurs" value="Webentwicklung Basics" readonly>
|
||||
<br><br>
|
||||
<label for="session">Bevorzugte Session:</label>
|
||||
<select>
|
||||
|
||||
<label for="kurs">Kurs:</label><br>
|
||||
<input type="text" id="kurs" name="kurs" value="Webentwicklung Basics" readonly><br><br>
|
||||
|
||||
<label for="session">Bevorzugte Session:</label><br>
|
||||
<select id="session" name="session" size="4">
|
||||
<option value="vormittag">Vormittag</option>
|
||||
<option value="nachmittag">Nachmittag</option>
|
||||
<option value="abend">Abend</option>
|
||||
<option value="wochenende">Wochenende</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
</fieldset>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<br>
|
||||
|
||||
<fieldset>
|
||||
<legend>Zusätzliche Optionen:</legend>
|
||||
<input type="checkbox" id="agb" name="agb" required>
|
||||
<label for="agb">Ich akzeptiere die Teilnahmebedingungen.</label><br>
|
||||
|
||||
<input type="checkbox" id="newsletter" name="newsletter">
|
||||
<label for="newsletter">Newsletter abonnieren.</label><br>
|
||||
|
||||
<input type="checkbox" id="equipment" name="equipment">
|
||||
<label for="equipment">Ich benötige spezielles Equipment.</label>
|
||||
</fieldset>
|
||||
|
||||
<br>
|
||||
|
||||
<fieldset>
|
||||
<legend>Teilnahmeformat:</legend>
|
||||
<input type="radio" id="online" name="format" value="online" required>
|
||||
<label for="online">Online</label><br>
|
||||
|
||||
<input type="radio" id="praesenz" name="format" value="praesenz">
|
||||
<label for="praesenz">Präsenz</label>
|
||||
</fieldset>
|
||||
|
||||
<br>
|
||||
|
||||
<button type="submit">Jetzt anmelden</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in New Issue