95 lines
3.6 KiB
PHP
95 lines
3.6 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta lang="de"/>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="device=device-width, initial-scaling=1"/>
|
|
<link rel="Stylesheet" type="text/css" href="style.css"/>
|
|
<link rel="Stylesheet" type="text/css" href="suchergebnisse.css"/>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<title>Candle Bibliothek | Suchergebnisse</title>
|
|
<link rel="icon" href="pictures/candle.png">
|
|
<script src="notwendiges_laden.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<header id="header">
|
|
<h1 class="kopf" >
|
|
<br><br>
|
|
Bibliothek
|
|
<a href="index.php" id="bildID">
|
|
<img id="CandleID" src="pictures/candle.png"
|
|
alt="Bild von einer Kerze" width="200" height="192"/></a>
|
|
<br><br>
|
|
Candle
|
|
</h1>
|
|
<div>
|
|
<a id="uberuns" href="uberuns.php">Über Uns</a>
|
|
<a id="buecher" href="buecher.php">Bücher</a>
|
|
<a id="meinebuecher" href="anmelden_meinebuecher.php">
|
|
Meine Bücher</a>
|
|
<?php
|
|
session_start();
|
|
if(isset($_SESSION["eingeloggt"]) && $_SESSION["eingeloggt"] == 1 ){
|
|
echo "<a id='abmelden' href='abmelden.php'>Abmelden</a>";}
|
|
?>
|
|
<form action="suchergebnisse.php">
|
|
<input type="hidden" name="searchType" value="simple">
|
|
<input name="searchFor" class="suchleiste" type="search"
|
|
placeholder="Suche...">
|
|
<button type="submit" id="buttonID" class="searchButton">
|
|
<i class="fa fa-search"></i>
|
|
</button>
|
|
</form>
|
|
<a id="erweitertesuche" href="erweitertesuche.php">
|
|
Erweiterte Suche</a>
|
|
<a href="anmelden.php" id="warenKorbID">
|
|
<img id="shoppingCard" src="pictures/einkaufswagen.png"
|
|
alt="Bild von einem Wagen" width="50" height="50"/>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!------------------------------------------------------------------------->
|
|
|
|
<div>
|
|
<img src="pictures/sidecandle.png" id="sidecandle" alt="sidecandle" >
|
|
<div class="impressum-container">
|
|
<h1>Impressum</h1>
|
|
<h2>Firmensitz</h2>
|
|
<p class="impressum-text">
|
|
Bibliothek Candle GmbH <br>
|
|
Paul-Wittsack-Straße 10 <br>
|
|
68163 Mannheim <br>
|
|
</p>
|
|
<h2>Kontaktdaten</h2>
|
|
<p class="impressum-text">
|
|
Telefon: +49XXXXXXXX Montag bis Freitag von 9 bis 18 Uhr <br>
|
|
Telefax: 069 54 732122 <br>
|
|
E-Mail: 2211780@stud.hs-mannheim.de <br>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!------------------------------------------------------------------------->
|
|
|
|
<!--Link JS file-->
|
|
<script src="burgerIcon.js"></script>
|
|
<!--If it was small and got big,
|
|
it calls the function only one time and doesn't do it all the time-->
|
|
<script>
|
|
var widthissue = false;
|
|
window.addEventListener("resize", function(event) {
|
|
if(window.innerWidth > 800 && widthissue) {
|
|
widthissue = false
|
|
unset()
|
|
}
|
|
else if(window.innerWidth < 800) widthissue = true;
|
|
})
|
|
</script>
|
|
|
|
<nav id="activeid" class="active"></nav>
|
|
|
|
<footer id="footer" class="fuss" ></footer>
|
|
|
|
</body>
|
|
</html>
|