forked from WEB-IMB-WS2526/lab-development-imb
19 lines
430 B
HTML
19 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Formular</title>
|
|
</head>
|
|
<body>
|
|
<form action="http://localhost:8080/submit" method="GET">
|
|
<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>
|