Athenaeum/static/thankyou.html

81 lines
3.4 KiB
HTML
Raw Normal View History

2025-05-25 16:54:16 +02:00
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
2025-05-30 19:04:31 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dark Athenæum - Dziękujemy</title>
2025-05-25 16:54:16 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
2025-05-30 19:04:31 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css" rel="stylesheet">
2025-05-25 16:54:16 +02:00
<link href="/css/styles.css" rel="stylesheet">
2025-05-30 19:04:31 +02:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.cdnfonts.com/css/old-english-text-mt" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
2025-05-25 16:54:16 +02:00
</head>
2025-06-01 11:09:37 +02:00
<body>
2025-05-30 19:04:31 +02:00
<nav class="navbar navbar-expand-lg">
<div class="container">
2025-06-01 11:09:37 +02:00
<a class="navbar-brand" href="/">DARK ATHENÆUM</a>
2025-05-26 19:24:45 +02:00
2025-06-01 11:09:37 +02:00
<div class="d-flex align-items-center ms-auto">
<button id="theme-toggle" class="btn">
<i class="bi bi-moon-stars-fill"></i>
</button>
2025-05-30 19:04:31 +02:00
<div class="auth-links">
<div class="user-links">
<a class="navbar-link" href="/profile.html">Profil</a>
<a class="navbar-link" href="#" id="logoutLink">Wyloguj</a>
<a class="navbar-link" href="/cart.html">
<i class="bi bi-basket"></i> Koszyk
</a>
2025-05-26 19:24:45 +02:00
</div>
</div>
</div>
2025-05-30 19:04:31 +02:00
</div>
</nav>
2025-05-26 19:24:45 +02:00
2025-05-30 19:04:31 +02:00
<main class="container my-5 text-center py-5">
<div class="row justify-content-center">
<div class="col-md-8">
<h1 class="display-3 fw-bold mb-4">Dziękujemy za zakup!</h1>
<p class="lead fs-4 mb-5">Twoje zamówienie zostało pomyślnie zrealizowane.</p>
<div class="d-flex justify-content-center gap-3">
<a href="/profile.html" class="btn btn-lg btn-gothic">
<i class="bi bi-clock-history me-2"></i> Historia zamówień
</a>
<a href="/" class="btn btn-lg btn-outline-gothic">
<i class="bi bi-house-door me-2"></i> Strona główna
</a>
</div>
</div>
</div>
2025-05-25 16:54:16 +02:00
</main>
2025-05-30 19:04:31 +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 class="text-center mt-4">
2025-06-01 19:31:21 +02:00
<p class="text-muted">&copy; 2025 Dark Athenæum. Wszelkie prawa zastrzeżone.</p>
2025-05-30 19:04:31 +02:00
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="/js/utils.js"></script>
<script type="module" src="/js/auth.js"></script>
2025-06-01 11:09:37 +02:00
<script type="module" src="/js/theme.js"></script>
2025-05-25 16:54:16 +02:00
</body>
</html>