2020-06-08 07:57:48 +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 = "Titel" >
2020-06-08 08:04:48 +00:00
< a href = "index.html" > < button id = "zurueck" > zurück< / button > < / a >
2020-06-08 07:57:48 +00:00
< h1 > Katalog< / h1 >
< / div >
< div class = "Eingabe" >
< h2 > Eingabe< / h2 >
< form action = "catalogue_search.php" >
< input type = "text" name = "Title" class = "input" placeholder = "Titel" >
< input type = "text" name = "Author" class = "input" placeholder = "Autor" >
< input type = "text" name = "Country" class = "input" placeholder = "Herkunft" >
< input type = "url" name = "Link" class = "input" placeholder = "Link" >
< input type = "text" name = "Language" class = "input" placeholder = "Sprache" >
2020-06-08 10:34:02 +00:00
< input type = "number" name = "Pages" class = "input" placeholder = "Seiten" min = "0" >
2020-06-08 07:57:48 +00:00
< input type = "date" name = "Year" class = "input" placeholder = "Erscheinungsjahr" > <!-- Nur YYYY --> <!-- funktioniert nur über ein Skript, alternativ type="number" mit min und max restrictions -->
< select class = "input" name = "Category" >
< option > Book< / option >
< option > Magazin< / option >
< option > EBook< / option >
< option > EPaper< / option >
< / select >
< input type = "url" name = "ImageLink" class = "input" placeholder = "Bild" >
2020-06-08 08:38:14 +00:00
< input type = "number" name = "LendTime" class = "input" placeholder = "Verteihdauer" min = "0" >
2020-06-08 07:57:48 +00:00
< select class = "input" name = "Category" >
< option > Physical< / option >
< option > Virtual< / option >
< / select >
< input type = "submit" name = "go" id = "go" >
< / form >
< / div >
< div class = "Ausgabe" >
< h2 > Ausgabe< / h2 >
< table >
< tr >
< td class = "fix" > ProductId< / td >
< td > < / td >
< / tr >
< tr >
< td class = "fix" > Titel< / td >
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Autor< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Land< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
< td class = "fix" > Link< / td >
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Sprache< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Seitenzahl< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Jahr< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Kategorie< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Bildlink< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Verleihdauer< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< tr >
2020-06-08 09:55:05 +00:00
< td class = "fix" > Verleihtyp< / td >
2020-06-08 07:57:48 +00:00
< td > < / td >
< / tr >
< / table >
< / div >
< / body >
< / html >