File size: 784 Bytes
f1d2cf1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
<!doctype html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Home</title>
</head>

<body>
    <h2>Home</h2>
    
    <!-- Mostra i messaggi flash -->
    {% include 'includes/flash.html' %}

    {% if 'user_id' in session %}
        <p>Benvenuto, {{ user.username }} detto {{ user.nickname }}!</p>
        <p><a href="{{ url_for('guestbook') }}">Vai al Guestbook</a>.</p>
        <p>Oppure <a href="{{ url_for('logout') }}">fai il Logout</a>.</p>
    {% else %}
        <p>
            Per accedere fai il <a href="{{ url_for('login') }}">Login</a>
            oppure, se non hai un account, fai il <a href="{{ url_for('signup') }}">Sign Up</a>
        </p>
    {% endif %}

</body>

</html>