FrontendDavid/addInventar.htm

33 lines
1,016 B
HTML
Raw Normal View History

2020-06-08 08:18:02 +00:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Katalog</title>
<link rel="stylesheet" type="text/css" href="scss/style.css" media="screen" />
</head>
<body>
<div class="Eingabe">
<h2>Eingabe</h2>
<form action="inventar_search.php">
<input type="number" name="BookId" class="input" placeholder="Zu welchem Buch möchten sie neue Exemplare hinnzufügen?">
<input type="number" name="Anzahl" class="input" placeholder="Wieviele Exemplare möchten sie hinzufügen?">
<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>