This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/templates/fragments/header.html

39 lines
1.6 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<title>eCommerce</title>
</head>
<body>
<nav class='hero' th:fragment="header">
2020-01-12 15:52:45 +01:00
<div class='content-width bar-flex'>
<a class="button bg-none" href="/">Project eCommerce</a>
<a class="button bg-none" href="/">Angebote</a>
<form class='spacer input-icon secondary' th:action="@{/shop/search}" method="GET">
<input type="text" placeholder="Nach Produkten suchen..."/>
2020-01-12 15:52:45 +01:00
<button>Finden</button>
</form>
<a th:unless="${customer}" class="button bg-none" th:href="@{/login}">Login</a>
<div class="notifications" th:if="${customer}" style="display: none;">
<input id="messages" type="checkbox"></input>
<label for="messages" class="button">
<img th:src="@{/img/bell.svg}" width="25" height="28" alt="Nachrichten"/>
</label>
<ul class="listbox">
<li class="unread">
Ihre Bestellung kommt voraussichtlich am Donnerstag, den 20.08.2020
</li>
<li class="unread">
Ihre Rücksendung ist bei uns eingegangen.
</li>
<li>
Ihre Bestellung wurde versandt.
</li>
</ul>
</div>
<a th:if="${customer}" class="button" th:href="@{/logout}">Abmelden</a>
</div>
</nav>
</body>
</html>