progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-30 f926d7469074808972d1f61464ee119660baf5dc
commit | author | age
395ba3 1 <!DOCTYPE html>
F 2 <html lang="en">
3 <head>
4     <meta charset="UTF-8">
5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
6     <title>Tipo</title>
7     <link rel="stylesheet" href="files_comuni/style/style.css">
8 </head>
9 <body>
10     {include file="header.tpl"}
11     <main>
12         {* FORM *}
493a48 13         <form action="contact.php" method="post">
c34154 14             Inserisci l'email:
F 15             <input type="email" name="email" placeholder="inserisci l'email"> <br>
16             Inserisci il numero:
17             <input type="text" name="number" placeholder="inserisci il numero"> <br>
395ba3 18             <button type="submit">clicca qui</button>
F 19         </form>
f926d7 20         {$formMsg}
d66c51 21         {foreach from=$error item=errore key=campo}
9c4eeb 22             {$errore}
d66c51 23             <br>
F 24         {/foreach}
395ba3 25     </main>
F 26     {include file="footer.tpl"}
27 </body>
28 </html>