19 lines
437 B
HTML
19 lines
437 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Eingabe-formular</title>
|
|
</head>
|
|
<body>
|
|
<h1>Eingabe-Formular</h1>
|
|
|
|
<form action="ausgabe.php">
|
|
<label for="usr_vn">Vorname:</label>
|
|
<input type="text" id="usr_vn" name="vorname" required><br><br>
|
|
|
|
<button>Ab damit!</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |