swt23w23/src/main/resources/templates/order-error.html
Mathis Kral 8929868895 Fix checkout bug where items got deleted
This works on #145.
Before this, if an item got removed out of the inventory by the
admin and the user tried to checkout, the application crashed.
2024-01-18 09:29:06 +01:00

20 lines
567 B
HTML

<!--/*-->
SPDX-License-Identifier: Apache-2.0 AND AGPL-3.0-or-later
SPDX-FileCopyrightText: 2024 swt23w23
<!--*/-->
<!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"
layout:decorate="~{layout.html(title='Es ist ein Fehler aufgetreten')}">
<body>
<div layout:fragment="content">
<p>
Es tut uns seeeeeeehr leid. Leider ist bei ihrer Bestellung etwas schief gelaufen.
Bitte probieren Sie es später erneut.
</p>
</div>
</body>
</html>