Erster commit wie von Claude erstellt (unverändert)
This commit is contained in:
46
public/index.html
Normal file
46
public/index.html
Normal file
@@ -0,0 +1,46 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user