forked from WEB-IB-SS26/development-ib
52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hobbies</title>
|
|
|
|
</head>
|
|
<body>
|
|
<h2>Hobbies Einfügen:</h2>
|
|
<form method="POST", action="http://localhost:8080/insert">
|
|
<legend>Persönliche Angaben:</legend>
|
|
<label>
|
|
Vor- und Nachanme:
|
|
<input type="text" name="name" required>
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Hobbies:
|
|
<input type="text" name="hobby">
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Alter:
|
|
<input type="number" name="alter" required>
|
|
</label>
|
|
<br>
|
|
<input type="submit" value="Jetzt Absenden">
|
|
</form>
|
|
|
|
<br><br>
|
|
<h2>Hobbies aktualisieren:</h2>
|
|
<form method="POST", action="http://localhost:8080/update">
|
|
<legend>Persönliche Angaben:</legend>
|
|
<label>
|
|
Vor- und Nachanme:
|
|
<input type="text" name="name" required>
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Hobbies:
|
|
<input type="text" name="hobby">
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Alter:
|
|
<input type="number" name="alter" required>
|
|
</label>
|
|
<br>
|
|
<input type="submit" value="Jetzt Absenden">
|
|
</form>
|
|
</body>
|
|
</html> |