This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql04d/formulare.php
T

24 lines
819 B
PHP

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Formulare</title>
</head>
<body>
<form action="addieren.php" method="post">
<p>Bitte geben Sie die beiden Zahlen in die Felder ein, die Sie addieren möchten.</p>
<p>
<label for="zahl1">Zahl 1</label>
<input type="text" name="zahl1" id="zahl1" placeholder="Zahl 1" required autofocus>
</p>
<p>
<label for="zahl2">Zahl 2</label>
<input type="text" name="zahl2" id="zahl2" placeholder="Zahl 2" required>
</p>
<p>
<input type="submit" value="Addiere">
<input type="reset">
</p>
</form>
</body>
</html>