60 lines
2.7 KiB
HTML
60 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<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">
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-black">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">DARK ATHENAEUM</a>
|
|
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
|
|
<div class="navbar-nav gap-3">
|
|
<form class="d-flex" id="searchForm">
|
|
<input class="form-control me-2 dark-input"
|
|
type="search"
|
|
placeholder="Szukaj książek..."
|
|
aria-label="Search"
|
|
id="searchInput">
|
|
</form>
|
|
|
|
<div class="anonymous-links d-flex gap-3">
|
|
<a class="nav-link" href="/login.html">Logowanie</a>
|
|
<a class="nav-link" href="/register.html">Rejestracja</a>
|
|
</div>
|
|
|
|
<div class="user-links d-flex gap-3" style="display: none !important;">
|
|
<a class="nav-link" href="/profile.html">Profil</a>
|
|
<a class="nav-link" href="#" id="logoutLink">Wyloguj</a>
|
|
</div>
|
|
|
|
<a class="nav-link" href="/cart.html">
|
|
<i class="bi bi-basket"></i> Koszyk
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main class="container py-5">
|
|
<h2 class="neon-title mb-4">Twój profil</h2>
|
|
|
|
<div class="dark-card p-4 mb-4">
|
|
<h3 class="lobster-font mb-3">Historia zamówień</h3>
|
|
<div id="order-history"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="/js/profile.js"></script>
|
|
</body>
|
|
</html>
|