<!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="BookId" class="input" placeholder="Zu welchem Buch möchten Sie neue Exemplare hinnzufügen? (BuchId)"min= "0"> <input type="number" name="Anzahl" class="input" placeholder="Wieviele Exemplare möchten Sie hinzufügen?" 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>