27 lines
733 B
HTML
27 lines
733 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Bestellformular</title>
|
|
<link rel="stylesheet" href="/Styles/bestellformular/bestellformular.css">
|
|
</head>
|
|
<body>
|
|
<div class="form-container">
|
|
<form action="/submit-bestellung" method="post">
|
|
<h2>Bestellformular</h2>
|
|
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required>
|
|
|
|
<label for="anschrift">Anschrift:</label>
|
|
<textarea id="anschrift" name="anschrift" rows="4" required></textarea>
|
|
|
|
<label for="bestellteWare">Bestellte Ware:</label>
|
|
<textarea id="bestellteWare" name="bestellteWare" rows="4"></textarea>
|
|
|
|
<input type="submit" value="Bestellung absenden">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|