47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="de">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>eBike Buchung - Tourist Bike GmbH</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>Tourist Bike GmbH</h1>
|
||
|
<nav>
|
||
|
<a href="#">Home</a>
|
||
|
<a href="#">Buchung</a>
|
||
|
<a href="#">Kontakt</a>
|
||
|
<a href="#">Login/Logout</a>
|
||
|
</nav>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<h2>Buchungsformular</h2>
|
||
|
<form action="process_booking.php" method="POST">
|
||
|
<label for="hotelname">Hotelname:</label>
|
||
|
<input type="text" id="hotelname" name="hotelname" value="Hotel Sunshine" readonly><br><br>
|
||
|
|
||
|
<label for="category">Hotelkategorie:</label>
|
||
|
<select id="category" name="category">
|
||
|
<option value="gold">Gold</option>
|
||
|
<option value="silver">Silber</option>
|
||
|
<option value="bronze">Bronze</option>
|
||
|
</select><br><br>
|
||
|
|
||
|
<label for="bikes">Anzahl der eBikes:</label>
|
||
|
<input type="number" id="bikes" name="bikes" min="1" required><br><br>
|
||
|
|
||
|
<label for="date">Buchungsdatum:</label>
|
||
|
<input type="date" id="date" name="date" required><br><br>
|
||
|
|
||
|
<button type="submit">Buchen</button>
|
||
|
</form>
|
||
|
</main>
|
||
|
|
||
|
<footer>
|
||
|
<p>Impressum | Datenschutz | Kontakt</p>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|