lab-development-imb/web/own_web/Anamese/Anamese.html

37 lines
1.5 KiB
HTML

<!DOcTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" method="POST">
<title>Anamesebogen</title>
</head>
<body>
<h1>Anamesebogen</h1>
<h2>Bitte ausfüllen</h2>
<form>
<fieldset>
<legend>Persönliches</legend>
<label for="name">Name:</label>
<input type="text" name="name" id="name" required><br><br>
<label for="vorname">Vorname:</label>
<input type="text" name="vorname" id="vorname" required><br><br>
<label for="gebdatum">Geburtsdatum</label>
<input type="date" name="gebdatum" id="gebdatum" required><br><br>
<label for="gender">Geschlecht</label>
<select name="gender" id="gender" required><br><br>
<option value="Weiblich">weiblich</option>
<option value="männlich">männlich</option>
<option value="divers">divers</option>
<option value="ka">keine Angabe</option>
</select>
</fieldset>
<fieldset>
<legend>Körperdaten</legend>
<label for="gewicht">Gewicht (kg):</label>
<input type="number" name="gewicht" id="gewicht"><br><br>
<label for="groesse">Größe (cm):</label>
<input type="number" name="groesse" id="groesse"><br><br>
</fieldset>
<button type="submit">Absenden</button>
</form>
</body>
</html>