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/user/notifications/index.html

92 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.75, user-scalable=no">
<title>Meine Benachrichtigungen</title>
<link rel="stylesheet" th:href="@{/css/ecom.css}" />
</head>
<body>
<nav th:replace="fragments/header :: header">Header</nav>
<div class="sidebar-layout content-width">
<nav></nav>
<div>
<h1>Meine Benachrichtigungen</h1>
</div>
</div>
<main class="sidebar-layout content-width">
<nav th:replace="fragments/customer :: sidebar"></nav>
<div>
<div class="grid xl">
<section class="notification unread">
<h2>Nachricht vom 17.08.2020, 14:38 Uhr</h2>
<h3>Ihre Bestellung kommt voraussichtlich am Donnerstag, den 20.08.2020</h3>
<p>
Vielen Dank für Ihre Bestellung der folgenden Artikel:<br>
<br>
2x tolle Kamera<br>
1x Bluetooth Kopfhörer<br>
3x USB-Magic Light<br>
<br>
Die Sendung wird Ihnen voraussichtlich am Donnerstag, den 20.08.2020 zugestellt.
Den aktuellen Status des Pakets können Sie jederzeit in der <a th:href="@{/shop/orders/}">Bestellübersicht</a> nachvollziehen.
</p>
<button type="button" name="button">Als gelesen makieren</button>
</section>
<section class="notification">
<h2>Nachricht vom 15.08.2020, 16:38 Uhr</h2>
<h3>Jetzt unsere Tagesangebote entdecken.</h3>
<p>
Entdecken sie jetzt unseren neusten Angebote:
</p>
<div class="flowflex">
<div>
<a th:href="@{/shop/articles/1234}" class="section">
<h3>Lorem Ipsum</h3>
<img th:src="@{/img/product-2.jpg}" class="s" />
<p>Nur 15,00&nbsp;EUR</p>
</a>
</div>
<div>
<a th:href="@{/shop/articles/1234}" class="section">
<h3>Stativ</h3>
<img th:src="@{/img/product-4.jpg}" class="s" />
<p>Nur 7,00&nbsp;EUR</p>
</a>
</div>
<div>
<a th:href="@{/shop/articles/1234}" class="section">
<h3>Ersatzfernbedinung</h3>
<img th:src="@{/img/product-6.jpg}" class="s" />
<p>Nur 17,00&nbsp;EUR</p>
</a>
</div>
</div>
</section>
<section class="notification">
<h2>Nachricht vom 13.08.2020, 14:38 Uhr</h2>
<h3>Ihre Bestellung ist angekommen.</h3>
<p>
Vielen Dank für Ihre Bestellung der folgenden Artikel:<br>
<br>
3x USB-Magic Light<br>
<br>
Ihre Bestellungen ist angekommen.
</p>
</section>
<section class="spacer"></section>
<section class="spacer"></section>
<section class="spacer"></section>
</div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
</body>
</html>