Regestrierung zu 90 % in HTML und Css implementiert
parent
217d3c7ac5
commit
e1e7bcd83e
106
probestyle.css
106
probestyle.css
|
@ -1365,4 +1365,110 @@ text-align: center;
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Regestrierung */
|
||||
|
||||
#regestrierungTitel{
|
||||
position: absolute;
|
||||
font-size: 25px;
|
||||
color: #000;
|
||||
left: 15px;
|
||||
top:20px;
|
||||
}
|
||||
|
||||
#datenSchutzHinweisRegestrierung{
|
||||
position: relative;
|
||||
font-size: 15px;
|
||||
color: #000;
|
||||
left: 25px;
|
||||
top:40px;
|
||||
}
|
||||
|
||||
#regestrierungAngabenZurRegestrierung{
|
||||
position: relative;
|
||||
font-size: 15px;
|
||||
color: #000;
|
||||
left: 25px;
|
||||
top:55px;
|
||||
}
|
||||
|
||||
#regestrierungInputSpan{
|
||||
position: relative;
|
||||
left: 25px;
|
||||
top:55px;
|
||||
}
|
||||
|
||||
#regestrierungHr{
|
||||
position: relative;
|
||||
width: 275px;
|
||||
color: #664220;
|
||||
}
|
||||
|
||||
#vorName{
|
||||
width: 275px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#nachName{
|
||||
width: 275px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#strasse{
|
||||
width: 212px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#hausNummer{
|
||||
width: 50px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#postleitzahl{
|
||||
width: 85px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#ort{
|
||||
width: 177px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#email{
|
||||
width: 275px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#emailRep{
|
||||
width: 275px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#passwort{
|
||||
width: 275px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#passwortRep{
|
||||
width: 275px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.registrierenKnopf{
|
||||
position: relative;
|
||||
width: 120px;
|
||||
height: 35px;
|
||||
background-color:#664220 ;
|
||||
color:rgb(255, 255, 255);
|
||||
padding-right:15px;
|
||||
padding-left: 15px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,128 @@
|
|||
<!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>
|
||||
</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>
|
||||
<a href="warenkorb.html" id="warenKorbID"> <img id="shoppingCard" src="pictures/shopingcart.png" alt="Bild von einem Wagen"
|
||||
width="50" height="50"/> </a>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="hauptcontainer">
|
||||
|
||||
<form action="">
|
||||
<div class="container">
|
||||
<span id="regestrierungTitel" > Regestrierung </span>
|
||||
<br>
|
||||
<p id="datenSchutzHinweisRegestrierung" > Über diese Webseite werden personenbezogene Daten erhoben und genutzt. Für Details, beziehen Sie sich bite auf die Seite Datenschutz.</p>
|
||||
<h4 id="regestrierungAngabenZurRegestrierung">Angaben zur Regestrierung<hr id="regestrierungHr"></h4>
|
||||
<br>
|
||||
<span id="regestrierungInputSpan" >
|
||||
<label for="vorName"><b>Vorname</b></label>
|
||||
<br>
|
||||
<input type="text" name="vorName" id="vorName" required>
|
||||
<br>
|
||||
<label for="nachName"><b>Nachname</b></label>
|
||||
<br>
|
||||
<input type="text" name="nachName" id="nachName" required>
|
||||
<br>
|
||||
<label for="strasse"><b>Straße und Hausnummer</b></label>
|
||||
<br>
|
||||
<input type="text" name="strasse" id="strasse" required>
|
||||
<input type="number" name="hausnummer" id="hausNummer" required>
|
||||
<br>
|
||||
<label for="postleitzahl"><b>Postleitzahl und Ort</b></label>
|
||||
<br>
|
||||
<input type="number" name="postleitzahl" id="postleitzahl" required>
|
||||
<input type="text" name="ort" id="ort" required>
|
||||
<br>
|
||||
<label for="email"><b>E-Mail-Adresse</b></label>
|
||||
<br>
|
||||
<input type="email" name="email" id="email" required>
|
||||
<br>
|
||||
<label for="emailRep"><b>E-Mail-Adresse bestätigen</b></label>
|
||||
<br>
|
||||
<input type="email" name="emailRep" id="emailRep" required>
|
||||
<br>
|
||||
<label for="passwort"><b>Passwort</b></label>
|
||||
<br>
|
||||
<input type="password" name="passwort" id="passwort" required>
|
||||
<br>
|
||||
<label for="passwortRep"><b>Passwort bestätigen</b></label>
|
||||
<br>
|
||||
<input type="password" name="passwortRep" id="passwortRep" required>
|
||||
<br>
|
||||
|
||||
<button type="submit" class="registrierenKnopf">Registrieren</button>
|
||||
<br>
|
||||
<div class="container signin">
|
||||
<p>Sie habe bereits ein Konto?<a href="#"> Jetzt anmelden</a> </p>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</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">
|
||||
<div class="navLinks">
|
||||
<input class="nav-toggleclass"id="nav-toggle" type="checkbox" onclick="openNav()";>
|
||||
<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>
|
Loading…
Reference in New Issue