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/templatesOld/intern/suppliers_overview.html

44 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<title>Kundenübersicht</title>
<link rel="stylesheet" th:href="@{/css/ecom.css}" />
<link rel="stylesheet" th:href="@{/css/NoFocus.css}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
</head>
<body>
<nav th:replace="fragments/header :: header">Header</nav>
<main>
<div class="content-width">
<h1>Kunden</h1>
<div class='spacer input-icon border backgroundprimary'>
<input type="text" class="nofocus" placeholder="Lieferanten Filtern"/>
<button class="nofocus">Filtern</button>
</div>
<p>
<table>
<tr>
<th>Lieferrantennummer</th>
<th>Name</th>
<th></th>
</tr>
<tr>
<td>1</td>
<td>Nike</td>
<td><button class="smaller">Details</button></td>
</tr>
<tr>
<td>1</td>
<td>Adidas</td>
<td><button class="smaller">Details</button></td>
</tr>
</table>
</p>
</div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
</body>
</html>