17 lines
701 B
HTML
17 lines
701 B
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Podziękowanie - Dark Athenaeum</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/css/styles.css" rel="stylesheet">
|
|
</head>
|
|
<body class="dark-theme">
|
|
<main class="container py-5 text-center">
|
|
<h1 class="neon-title mb-4">Dziękujemy za zakup!</h1>
|
|
<p class="inter-font fs-5">Twoje zamówienie zostało pomyślnie zrealizowane.</p>
|
|
<a href="/profile.html" class="btn btn-gothic">Zobacz historię zamówień</a>
|
|
<a href="/" class="btn btn-outline-gothic ms-2">Strona główna</a>
|
|
</main>
|
|
</body>
|
|
</html>
|