This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/24-10-2/eingabe.html
danielvici123 7c5bb1e29f - Unnötige Datei gelöscht
- erste aufgabe fertig
- zweite aufgabe mit style gemacht (style war nicht geforder)
2024-10-02 11:54:06 +02:00

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>