46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rezepte Übersicht</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="top-bar">
|
|
<div class="search-container">
|
|
<form id="searchForm">
|
|
<input type="text" id="searchInput" placeholder="Suche..." />
|
|
<button type="submit" class="search-btn">Suche</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tabelle-container">
|
|
<table class="table-aufgaben">
|
|
<thead>
|
|
<tr>
|
|
<th class="rezeptnr">
|
|
<a href="#" data-sort="rezeptnummer">Rezeptnr.</a>
|
|
</th>
|
|
<th class="bezeichnung">
|
|
<a href="#" data-sort="bezeichnung">Bezeichnung</a>
|
|
</th>
|
|
<th class="kategorie">
|
|
<a href="#" data-sort="kategorie">Kategorie</a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="recipeTable">
|
|
<tr><td colspan="3">Lade Rezepte...</td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="neu-container">
|
|
<a href="/edit.html" class="neu">Neues Rezept</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/js/index.js"></script>
|
|
</body>
|
|
</html> |