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

79 lines
1.7 KiB
HTML
Raw Normal View History

2023-11-05 09:38:25 +01:00
<!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>
2023-11-05 09:38:25 +01:00
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
<!--<a href="#account">Mein Konto</a>-->
</div>
<div>
<h1>Katalog</h1>
</div>
<div>
<table style="width: 100%;">
<tr style="text-align: left;">
<th></th>
<th>Name</th>
<th>Mindestzeitraum</th>
<th>Basisausstattung</th>
<th>Preis ab</th>
</tr>
<tr>
<td>
**BILD**
</td>
<td>Rent-a-Cook</td>
<td>3h</td>
<td>
<ul>
<li>1 Koch</li>
<li>300kg Mettbrötchen</li>
<li>300kg vegane Weißwurst</li>
</ul>
</td>
<td>499,99€</td>
</tr>
<tr>
<td>
**BILD**
</td>
<td>Sushi-Abend</td>
<td>4h</td>
<td>
<ul>
<li>2 Köche</li>
<li>300kg Sushi</li>
<li>300kg Sushi vegan</li>
</ul>
</td>
<td>699,99€</td>
</tr>
</table>
</div>
<div>
<button type="button">Hinzufügen</button>
</div>
</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>