Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width,initial-scale=1" /> | |
| <title>FastShip AI</title> | |
| <link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}"> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | |
| </head> | |
| <body> | |
| <header class="topbar"> | |
| <div class="brand">🚚 FastShip AI</div> | |
| <nav class="nav"> | |
| {% if current_user.is_authenticated %} | |
| <span class="user">Hello, {{ current_user.fullname }}</span> | |
| <a href="{{ url_for('dashboard') }}">Dashboard</a> | |
| {% if current_user.is_admin %} | |
| <a href="{{ url_for('admin_negatives') }}">Admin</a> | |
| {% endif %} | |
| <a href="{{ url_for('logout') }}">Logout</a> | |
| {% else %} | |
| <a href="{{ url_for('login') }}">Login</a> | |
| <a href="{{ url_for('register') }}">Register</a> | |
| {% endif %} | |
| </nav> | |
| </header> | |
| <main class="main"> | |
| <div class="container"> | |
| {% with messages = get_flashed_messages(with_categories=true) %} | |
| {% if messages %} | |
| <div class="flashes"> | |
| {% for category, msg in messages %} | |
| <div class="flash {{ category|lower }}">{{ msg }}</div> | |
| {% endfor %} | |
| </div> | |
| {% endif %} | |
| {% endwith %} | |
| {% block content %}{% endblock %} | |
| </div> | |
| </main> | |
| <footer class="footer">© FastShip AI</footer> | |
| </body> | |
| </html> |