67 lines
2.5 KiB
HTML
67 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<title>Warenkorb</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="../index.css">
|
|
<link rel="stylesheet" href="warenkorb.css">
|
|
<script src='https://kit.fontawesome.com/a076d05399.js' crossorigin="anonymous" SameSite="Secure"></script>
|
|
<script src="../script-frontend/warenkorb.js" defer></script>
|
|
</head>
|
|
|
|
<style> body { font-size: 20px; } </style>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="top-nav">
|
|
<div id="logo">
|
|
<a href="../index.html"><img src="../html-landing-page/images/nice-ice-logo.png" alt=""></a>
|
|
</div>
|
|
<div id="warenkorb">
|
|
<a href="#"><i class='fas fa-shopping-cart'></i> <span>0</span></a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<nav>
|
|
<div class="bottom-nav">
|
|
<ul>
|
|
<a href="../html-shop/shop.html"><li>Shop</li></a>
|
|
<a href="../html-admin/admin.html"><li>Administrator</li></a>
|
|
<a href="../html-memes/memes.html"><li>Über uns</li></a>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
<main>
|
|
<div id="mainContainer">
|
|
<div id="check"></div>
|
|
<form id="myForm" method="POST" action="">
|
|
<!--https://theoneandgis.herokuapp.com-->
|
|
|
|
<label for="vorname">Vorname</label>
|
|
<input type="text" id="vorname" name="vorname" value="Vorname" onfocus="this.value=''">
|
|
|
|
<label for="nachname">Nachname</label>
|
|
<input type="text" id="nachname" name="nachname" value="Nachname" onfocus="this.value=''">
|
|
|
|
<label for="straße">Straße</label>
|
|
<input type="text" id="straße" name="straße" value="Straße-Hausnummer" onfocus="this.value=''">
|
|
|
|
<label for="postleitzahl">Postleitzahl</label>
|
|
<input type="text" id="postleitzahl" name="postleitzahl" value="PLZ-Wohnort" onfocus="this.value=''">
|
|
</form>
|
|
<!--<button id="printOrder">print order</button>-->
|
|
<button id="sendOrder">Bestellung Abschicken</button>
|
|
<!--<button id="formButton">Send Form</button>-->
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<div>
|
|
<span>( - Disclaimer - )</span>
|
|
<span>Ich verdiene mit dieser Website kein Geld</span>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |