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

21 lines
697 B
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'>
2020-01-15 21:35:21 +01:00
<a class="button" href="/">Project eCommerce</a>
<a class="button" href="/">Angebote</a>
<form class='spacer input-icon secondary' th:action="@{/searchresults}" method="GET">
<input type="text" placeholder="Nach Produkten suchen..."/>
2020-01-12 15:52:45 +01:00
<button>Finden</button>
</form>
2020-01-15 21:35:21 +01:00
<a class="button" th:href="@{/login}"> Login </a>
</div>
</nav>
</body>
</html>