2023-05-03 23:07:04 +02:00
|
|
|
<!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="probestyle.css"/>
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<title>Candle Bibliothek</title>
|
|
|
|
<script src="burgerIcon.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1 class="kopf" >
|
|
|
|
<br><br>
|
|
|
|
Bibliothek <a href="index.html" 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.html">Über Uns</a>
|
|
|
|
<a id="buecher" href="buecher.html">Bücher</a>
|
|
|
|
<a id="meinebuecher" href="meineBuecher.html">Meine Bücher</a>
|
|
|
|
<form action="">
|
|
|
|
<input 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.html">Erweiterte Suche</a>
|
2023-05-07 16:23:21 +02:00
|
|
|
<a href="warenkorb.html" id="warenKorbID"> <img id="shoppingCard" src="pictures/shopingcart.png" alt="Bild von einem Wagen"
|
2023-05-03 23:07:04 +02:00
|
|
|
width="50" height="50"/> </a>
|
|
|
|
</div>
|
|
|
|
</header>
|
2023-05-07 16:23:21 +02:00
|
|
|
<div class="anmeldung">
|
|
|
|
<div class="anmeldung-text">
|
|
|
|
<h1 class="anmeldung-überschrift" >Anmelden</h1>
|
|
|
|
<p id="obererText">Über die Webseite werden personenbezogene Daten erhoben und genutzt.
|
|
|
|
Für Details, beziehen Sie sich bitte auf die Seite <span>Datenschutz</span></p>
|
|
|
|
</div>
|
2023-05-03 23:07:04 +02:00
|
|
|
|
2023-05-07 16:23:21 +02:00
|
|
|
<div class="anmeldeInput">
|
|
|
|
<h2 class="anmeldung-überschrift">Angaben zur Anmeldung</h2>
|
|
|
|
<hr style="background-color:#A78766; height: 2px; width: 200px; border: none; position: relative;
|
2023-05-03 23:07:04 +02:00
|
|
|
top:3px">
|
|
|
|
|
2023-05-07 16:23:21 +02:00
|
|
|
<div>
|
|
|
|
<form class="anmeldung-überschrift" action="anmeldung.php">
|
|
|
|
Karten-ID</br>
|
|
|
|
<input type="text" name="karten-id"></br>
|
|
|
|
Passwort</br>
|
|
|
|
<input type="password" name="password"></br>
|
|
|
|
<input id="anmeldebutton" type="submit" name="submit" value="Anmelden">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="anmeldung-ausklappen">
|
|
|
|
<details>
|
|
|
|
<summary>Passwort vergessen / Passwort ändern</summary>
|
|
|
|
<p>Sollten sie Ihr Passwort vergessen haben oder wollen Sie es ändern,
|
|
|
|
kommen Sie bitte mit ihrem Bibliotheksausweis zu uns in die Bibliothek</p>
|
|
|
|
</details>
|
|
|
|
<details>
|
|
|
|
<summary>Sie haben noch kein Konto?</summary>
|
|
|
|
<p><a href="registrierung.html">Jetzt registrieren</a></p>
|
|
|
|
</details>
|
|
|
|
</div>
|
2023-05-03 23:07:04 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-05-07 16:23:21 +02:00
|
|
|
|
2023-05-03 23:07:04 +02:00
|
|
|
<!--Link JS file-->
|
|
|
|
<!--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">
|
2023-05-07 16:23:21 +02:00
|
|
|
<div class="navLinks">
|
|
|
|
<input class="nav-toggleclass"id="nav-toggle" type="checkbox" onclick="openNav()";>
|
2023-05-03 23:07:04 +02:00
|
|
|
<label for="nav-toggle" class="icon-burger" >
|
|
|
|
<div class="line"></div>
|
|
|
|
<div class="line"></div>
|
|
|
|
<div class="line"></div>
|
|
|
|
</label>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<footer class="fuss" >
|
|
|
|
<div>
|
|
|
|
<a id="impressum" href="impressum.html">Impressum</a>
|
|
|
|
<a id="kontakt" href="kontakt.html">Kontakt</a>
|
|
|
|
<a id="datenschutz" href="datenschutz.html">Datenschutz</a>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|