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/intern/warehouse/error_progress_failed.html

30 lines
800 B
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<title>e-commerce</title>
<link rel="stylesheet" th:href="@{/css/ecom.css}"/>
<script>
window.setTimeout(function() {
window.location.href = "/intern/warehouse/todo";
}, 3000);
</script>
</head>
<body>
<body>
<main class="modal l">
<div class="detailflex l">
<h1>Wurde bereits zugewiesen.</h1>
<p>
<img th:src="@{/img/undraw_cancel_u1it.svg}"/>
</p>
<p>
Diese Seite leitet sie automatisch nach 3 Sekunden weiter.
</p>
<a class="button" th:href="@{/intern/warehouse/todo}" > Zurück </a>
</div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
</body>
</html>