24 lines
819 B
PHP
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> |