progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-24 c34154c6ba1f55e401c13ee89560aec31d7fa1c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tipo</title>
    <link rel="stylesheet" href="files_comuni/style/style.css">
</head>
<body>
    {include file="header.tpl"}
    <main>
        {* FORM *}
        <form action="contact.php">
            Inserisci l'email:
            <input type="email" name="email" placeholder="inserisci l'email"> <br>
            Inserisci il numero:
            <input type="text" name="number" placeholder="inserisci il numero"> <br>
            <button type="submit">clicca qui</button>
        </form>
        {$cellNumber}
        {$email}
    </main>
    {include file="footer.tpl"}
</body>
</html>