WMGZON/templates/header.html

23 lines
887 B
HTML
Raw Normal View History

2023-12-31 16:59:53 +00:00
<nav class="navbar">
<img src="{{url_for('static', filename='assets/img/wmgzon.png')}}" id="logo" class="not-required" alt="WMGZON Logo">
<form action="test.html" method="get">
<input type="text" name="search" placeholder="Find your favourite products" class="search-bar">
<input type="submit" class="search-button">
</form>
2024-01-02 22:22:14 +00:00
{% if user != None: %}
<a href="/logout">Welcome, {{ user }}</a>
2024-01-02 22:22:14 +00:00
{% else %}
<a href="/login">Login/Signup</a>
2024-01-02 22:22:14 +00:00
{% endif %}
2023-12-31 16:59:53 +00:00
</nav>
<centre>
<div class="categories">
<a href="CarParts" class="category">Car Parts</a>
<a href="Animals" class="category">Animals</a>
<a href="Sports" class="category">Sports</a>
<a href="Books" class="category">Books</a>
<a href="Phones" class="category">Phones</a>
<a href="Music" class="category">Music</a>
</div>
</centre>