Sure, here is the modified content for your block:
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Escape Room Bewertung</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Escape Room Bewertung</h1>
</header>
<main>
<form action="formular.php" method="post">
<input type="text" name="escape_name" placeholder="Escape Name" class="input-field">
<input type="text" name="befreier" placeholder="Befreier" class="input-field">
<input type="date" name="gespielt_an" placeholder="Gespielt an" class="input-field">
<input type="number" name="atmosphaere" min="1" max="10" placeholder="Atmosphäre" class="input-field">
<input type="number" name="spieleleiter" min="1" max="10" placeholder="Spielleiter" class="input-field">
<input type="number" name="raetsel" min="1" max="10" placeholder="Rätsel" class="input-field">
<input type="number" name="startzeit" min="1" max="10" placeholder="Startzeit" class="input-field">
<input type="number" name="laufzeit" min="1" max="10" placeholder="Laufzeit" class="input-field">
<input type="submit" value="Absenden" class="button">
</form>
</main>
<footer>
<p>Copyright © 2023</p>
</footer>
</body>
</html>
Please note that since I don’t have access to your style.css
and formular.php
files, they are not included here. Make sure to include the correct file paths to those resources in your original code. Let me know if you need any further assistance!
Escape Room Bewertung
Copyright © 2023