php-school/prestito/index.php
2024-10-31 10:47:12 +01:00

27 lines
No EOL
691 B
PHP

<!DOCTYPE HTML>
<html>
<head>
<title>Prestito</title>
<?php require "includes/head.php" ?>
</head>
<body>
<div class="container">
<h1>Banca Bruschetta</h1>
<h2>Form Prestito</h2>
<form action="prestito.php" method="post">
Name: <input type="text" name="nome"><br>
Cognome: <input type="text" name="cogn"><br><br>
Prestito Annuale <input type="radio" name="prestito" value="12"> (365gg) 4%<br>
Prestito Mensile <input type="radio" name="prestito" value="1"> 830gg) 5%<br><br>
Cifra: <input type="text" name="cifra"><br><br>
<input type="submit">
</form>
</div>
<?php require "includes/footer.php" ?>
</body>
</html>