mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
41 lines
504 B
PHP
41 lines
504 B
PHP
<html>
|
|
|
|
<head>
|
|
|
|
<title>Text des Titels</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Hier wird abkassiert!</h1>
|
|
|
|
|
|
|
|
<form action="input_radiobox.php" method="post">
|
|
|
|
<p>Geben Sie Ihre Zahlungsweise an:</p>
|
|
|
|
<p>
|
|
|
|
<input type="radio" name="Zahlmethode" value="Mastercard"> Mastercard<br>
|
|
|
|
<input type="radio" name="Zahlmethode" value="Visa"> Visa<br>
|
|
|
|
<input type="radio" name="Zahlmethode" value="AmericanExpress"> American Express
|
|
<br><br>
|
|
<input type="submit" value="Absenden">
|
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|