first commit
This commit is contained in:
commit
d975e212f9
35 changed files with 813 additions and 0 deletions
27
prestito/index.php
Normal file
27
prestito/index.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue