forked from WEB-IMB-WS2526/lab-development-imb
18 lines
438 B
HTML
18 lines
438 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Formular</title>
|
|
</head>
|
|
<body>
|
|
<form action="http://localhost:8080/submit" method="POST">
|
|
<label for="vorname">Vorname:</label>
|
|
<input type="text" id="vorname" name="vorname"><br><br>
|
|
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name"><br><br>
|
|
|
|
<button type="submit">Absenden</button>
|
|
</form>
|
|
</body>
|
|
</html> |