progetto fatto precedentemente adattato al framework creato con il corso
filippo.bertilotti
2024-06-11 8e493d574a3a54f23041f47617545b19e6193573
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.mvc.php" %}
 
{% block title %} Home {% endblock %}
 
{% block body %}
 
{% include "../views/Fiat/header.mvc.php" %}
 
<main>
    <form action="/fiat/contact" method="post">
        Inserisci l'email:
        <input type="email" name="email" placeholder="inserisci l'email"> <br>
        Inserisci il numero:
        <input type="text" name="telefono" placeholder="inserisci il numero"> <br>
        <button type="submit">clicca qui</button>
    </form>
    {% foreach ($errors as $error): %}
        <h4>{{error}}</h4>
    {% endforeach; %}
</main>
 
{% include "../views/Fiat/footer.mvc.php" %}
 
{% endblock %}