FrontendDavid/findInventar.htm

37 lines
1018 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inventar</title>
<link rel="stylesheet" type="text/css" href="scss/style.css" media="screen" />
</head>
<body>
<div class="Titel">
<a href="index.html"><button id= "zurueck">zurück</button></a>
<h1>Inventar</h1>
</div>
<div class="Eingabe">
<h2>Eingabe</h2>
<form action="inventar_search.php">
<input type="number" name="ProductId" class="input" placeholder="Geben Sie die gesuchte Id an" min= "0">
<input type="submit" name="go" id="go">
</form>
</div>
<div class="Ausgabe">
<h2>Ausgabe</h2>
<table>
<tr>
<td class ="fix">ItemId</td>
<td></td>
</tr>
<tr>
<td class="fix">BookId</td>
<td></td>
</tr>
</table>
</div>
</body>
</html>