File size: 494 Bytes
7389924
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Home Page</title>
</head>
<body>
    <h1>Welcome to the Mai Bhi Singer main page</h1>
    {% if logged_in %}
        <p>You are logged in. Visit the <a href="{{ url_for('create_song') }}">Try samples</a>.</p>
        <p><a href="{{ url_for('logout') }}">Logout</a></p>
    {% else %}
        <p>You are not logged in. <a href="{{ url_for('google.login') }}">Login with Google</a></p>
    {% endif %}
</body>
</html>