mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
41 lines
493 B
PHP
41 lines
493 B
PHP
<html>
|
|
|
|
<head>
|
|
|
|
<title>Text des Titels</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Pizzabelag nach Wahl!</h1>
|
|
|
|
|
|
|
|
<form action="input_checkbox.php" method="get">
|
|
|
|
<p>Kreuzen Sie die gewünschten Zutaten an:</p>
|
|
|
|
<p>
|
|
|
|
<input type="checkbox" name="zutat" value="salami"> Salami<br>
|
|
|
|
<input type="checkbox" name="zutat1" value="pilze"> Pilze<br>
|
|
|
|
<input type="checkbox" name="zutat2" value="sardellen"> Sardellen<br>
|
|
<br><br>
|
|
<input type="submit" value="Absenden">
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|