File size: 799 Bytes
54862ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- templates/navbar.html -->
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<nav>
    <div class="logo">
        <a href="{{ url_for('homepage') }}">BookNest</a>
    </div>
    <ul class="nav-links">
        <li><a href="{{ url_for('homepage') }}">Home</a></li>
        <li><a href="{{ url_for('index') }}">Recommendations</a></li>
        <li><a href="{{ url_for('contact') }}">Contact</a></li>
        {% if current_user.is_authenticated %}
            <li><a href="{{ url_for('profile') }}">Profile</a></li>
            <li><a href="{{ url_for('logout') }}">Logout</a></li>
        {% else %}
            <li><a href="{{ url_for('login') }}">Login</a></li>
            <li><a href="{{ url_for('register') }}">Register</a></li>
        {% endif %}
    </ul>
</nav>