swt23w23/src/main/resources/templates/eventPlanner.html

45 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head>
<meta charset="utf-8">
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
<title th:text="Katalog">Katalog</title>
</head>
<body>
<div class="topnav"> <!-- später für css -->
<a th:href="@{/}" th:text="Home">Home</a>
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
<a th:href="@{/event}" th:text="Eventplaner">Eventplaner</a>
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
<!--<a href="#account">Mein Konto</a>-->
</div>
2023-11-07 17:56:23 +01:00
<h1>Eventplaner (planen Sie Ihr Event)</h1>
<table style="width:100%; text-align:left">
<tr>
<td>Eventtyp</td>
<td>SISHI_NIGHT</td>
</tr>
<tr>
<th>Produkt</th>
<th>Anzahl</th>
</tr>
<tr>
<td>Sake Nigiri</td>
<td>200</td>
</tr>
</table>
</body>
<footer style="bottom: 0; position: absolute;">
<p>© Hannes Wurst @ Mampf GmbH</p>
<p>
<a href="mailto:catering@mampf.com">catering@mampf.com</a>
</p>
</footer>
</html>