2025-05-25 16:25:22 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- static/cart.html -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Dark Athenaeum</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css" rel="stylesheet">
|
|
|
|
<link href="/css/styles.css" rel="stylesheet">
|
|
|
|
<link href="https://fonts.cdnfonts.com/css/old-english-text-mt" rel="stylesheet">
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body class="dark-theme">
|
2025-05-26 19:24:45 +02:00
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-black">
|
|
|
|
<div class="container">
|
|
|
|
<!-- Lewa strona - wyszukiwanie -->
|
|
|
|
<form class="d-flex me-lg-3 flex-grow-1" id="searchForm">
|
|
|
|
<input class="form-control me-2 dark-input"
|
|
|
|
type="search"
|
|
|
|
placeholder="Szukaj książek..."
|
|
|
|
aria-label="Search"
|
|
|
|
id="searchInput">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- Środek - logo -->
|
|
|
|
<a class="navbar-brand mx-lg-auto order-lg-1" href="/">DARK ATHENAEUM</a>
|
|
|
|
|
|
|
|
<!-- Prawa strona - przyciski -->
|
|
|
|
<div class="d-flex align-items-center order-lg-2">
|
|
|
|
<div class="auth-links">
|
|
|
|
<div class="anonymous-links">
|
|
|
|
<a class="nav-link" href="/login.html">Logowanie</a>
|
|
|
|
<a class="nav-link" href="/register.html">Rejestracja</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="user-links">
|
|
|
|
<a class="nav-link" href="/profile.html">Profil</a>
|
|
|
|
<a class="nav-link" href="#" id="logoutLink">Wyloguj</a>
|
|
|
|
<a class="nav-link" href="/cart.html">
|
|
|
|
<i class="bi bi-basket"></i> Koszyk
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
2025-05-25 16:25:22 +02:00
|
|
|
<main class="container py-5">
|
|
|
|
<h2 class="neon-title mb-4">Twój koszyk</h2>
|
|
|
|
<div id="cart-items" class="row g-4"></div>
|
2025-05-25 16:54:16 +02:00
|
|
|
<div class="text-center mt-5">
|
|
|
|
<button id="checkoutBtn" class="btn btn-gothic btn-lg">
|
|
|
|
<i class="bi bi-wallet2"></i> Złóż zamówienie
|
|
|
|
</button>
|
|
|
|
</div>
|
2025-05-25 16:25:22 +02:00
|
|
|
</main>
|
2025-05-30 11:41:38 +02:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center align-items-center text-center">
|
|
|
|
<div class="col-auto mb-2 mb-md-0">
|
|
|
|
<a href="https://sykorax.eu/">O Nas</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-auto">
|
|
|
|
<a href="https://sykorax.eu/">Kontakt</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-auto">
|
|
|
|
<a href="https://sykorax.eu/">Współpraca</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
2025-05-25 16:25:22 +02:00
|
|
|
<script src="/js/cart.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|