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/customer.html

20 lines
462 B
HTML
Raw Normal View History

2020-01-25 17:12:12 +01:00
<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
2020-04-27 09:48:24 +02:00
<meta charset="UTF-8">
<title>e-commerce</title>
2020-01-25 17:12:12 +01:00
</head>
<body>
2020-04-27 09:48:24 +02:00
<nav th:fragment="sidebar">
<h1>Mein Konto</h1>
<ul class="secondary">
<li><a th:href="@{/}"> &gt; Zur Startseite</a></li>
<li><a th:href="@{/user/settings}">Einstellungen</a></li>
<li><a th:href="@{/user/orders/}">Bestellungen</a></li>
</ul>
</nav>
2020-01-25 17:12:12 +01:00
</body>
</html>